Android Utililty Methods Char Value Check

List of utility methods to do Char Value Check

Description

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

Method

booleanisContainSpecialChar(String str, String charSet)
is Contain Special Char
Pattern patt = Pattern.compile(charSet);
Matcher matcher = patt.matcher(str);
return matcher.find();