List of utility methods to do Hebrew String Check
boolean | isHebrew(String s) Determines if a string is a Hebrew word. int len = s.length(); for (int i = 0; i < len; ++i) { if (isHebrew(s.codePointAt(i))) { return true; return false; |
boolean | isHebrew(int codePoint) Determines if a character is a Hebrew character. return Character.UnicodeBlock.HEBREW.equals(Character.UnicodeBlock
.of(codePoint));
|