Easy Tutorial
❮ Java String Endswith Collection All ❯

Java isDigit() Method

Java Character Class


The isDigit() method is used to determine whether the specified character is a digit.

Syntax

public static boolean isDigit(char ch)

Parameters

Return Value

Returns true if the character is a digit; otherwise, returns false.

Example

public class Test {

    public static void main(String args[]) {
        System.out.println(Character.isDigit('c'));
        System.out.println(Character.isDigit('5'));
    }
}

The output of the above program is:

false
true

Java Character Class

❮ Java String Endswith Collection All ❯