The java.util.Character.isDigit() method is used to check whether a specific character is a numerical digit or not. It returns true if the character is a digit (0-9), and false otherwise. This method is static and can be called directly using the class name "Character".
Java Character.isDigit - 30 examples found. These are the top rated real world Java examples of java.util.Character.isDigit extracted from open source projects. You can rate examples to help us improve the quality of examples.