- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Check whether the entered value is a digit or not in Java
To check whether the entered value is a digit or not in Java, use the Character.isDigit() method.
We have a character to be checked.
char val = '5';
Now let us use the Character.isDigit() method.
if (Character.isDigit(val)) { System.out.println("Character is a digit!"); } else { System.out.println("Character is not a digit!"); }
Let us see the complete example now to check for Uppercase in Java.
Example
public class Demo { public static void main(String []args) { System.out.println("Checking for digit..."); char val = '5'; System.out.println("Value: "+val); if (Character.isDigit(val)) { System.out.println("Character is a digit!"); }else { System.out.println("Character is not a digit!"); } } }
Output
Checking for digit... Value: 5 Character is a digit!
- Related Articles
- Check whether the entered value is a letter or not in Java
- Check whether the entered value is whitespace or not in Java
- Java Program to check whether the entered character a digit, white space, lower case or upper case character
- Check if the value entered is palindrome or not using C language
- C# Program to Check Whether the Entered Number is an Armstrong Number or Not
- Java Program to check whether the entered value is ASCII 7 bit alphabetic
- Java Program to check whether the entered value is ASCII 7-bit alphabetic lowercase
- Java Program to check whether the entered value is ASCII 7 bit alphabetic uppercase
- Java Program to check whether the entered value is ASCII 7-bit control character
- Check whether a Stack is empty or not in Java
- Check whether a character is Lowercase or not in Java
- Check whether a character is Uppercase or not in Java
- Check whether a HashSet is empty or not in Java
- Check whether the file is hidden or not in Java
- Check whether a NavigableMap empty or not in Java

Advertisements