All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.snapscript.core.convert.CharacterMatcher Maven / Gradle / Ivy

package org.snapscript.core.convert;

public class CharacterMatcher {

   public boolean matchCharacter(String text) {
      if(text != null) {
         int length = text.length();
         
         if(length == 1) {
            return true;
         }
      }
      return false;
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy