In this Example, We will discuss about the isDigit() method of the character class.
Example for isDigit() method of character class
In this Example, We will discuss about the isDigit() method of the character class. This method specifies that the given character is a digit or not and returns Boolean value true if character is digit else it returns false. The implementation of the method is given in the following example.
Example: CharacterIsDigit.java
package com.devmanuals; public class CharacterIsDigit { public static void main(String[] args) { System.out.print("Is character A is Digit= "); System.out.println(Character.isDigit('A')); System.out.print("Is character 9 is Digit= "); System.out.println(Character.isDigit('9')); } }
Output:
Is character A is Digit= false Is character 9 is Digit= true |
[ 0 ] Comments