Answers for "how to check whether the charackter is the specific letter in java"

3

how to check if a char is a letter java

Character.isDigit(string.charAt(index)) //(JavaDoc) will return true if it's a digit
Character.isLetter(string.charAt(index)) //(JavaDoc) will return true if it's a letter
Posted by: Guest on July-27-2020

Code answers related to "how to check whether the charackter is the specific letter in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language