Example for isDigit() method of character class

Example for isDigit() method of character class


Posted in : Core Java Posted on : October 1, 2010 at 2:52 PM Comments : [ 0 ]

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

Download This Example.

Go to Topic «PreviousHomeNext»

Your Comment:


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

 
Tutorial Topics