Android Utililty Methods Hebrew String Check

List of utility methods to do Hebrew String Check

Description

The list of methods to do Hebrew String Check are organized into topic(s).

Method

booleanisHebrew(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;
booleanisHebrew(int codePoint)
Determines if a character is a Hebrew character.
return Character.UnicodeBlock.HEBREW.equals(Character.UnicodeBlock
        .of(codePoint));