Java Character isLetter() method Example

Java Character API comes with many methods to test whether a character is a digit or letter etc. This type of testing is useful in situations like constraints on passwords, employee id etc. To test for letter, the character class comes with isLetter(char) method. Following is the method signature as defined in java.lang.Character class. public …

Java Character isLetter() method Example Read More »