Java Character isDefined() Example

Java Character API comes with many methods to test whether a character is a digit or letter or defined in Unicode etc. This type of testing is useful in situations when a Java program can accept a character or not. Following is the method signature as defined in java.lang.Character class. public static boolean isDefined(char ch): …

Java Character isDefined() Example Read More »