Android Utililty Methods English Check

List of utility methods to do English Check

Description

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

Method

booleanisMessageEnglish(String msg)
is Message English
if (Pattern.matches("^[\\x00-\\x7F]*$", msg)) {
    return true;
} else {
    return false;