- 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 letter or not in Java
To check whether the entered value is a letter or not in Java, use the Character.isLetter() method.
We have a value to be checked.
char val = 'D';
Now let us use the Character.isLetter() method.
if (Character.isLetter(val)) { System.out.println("Character is in Lowercase!"); }else { System.out.println("Character is in Uppercase!"); }
Let us see the complete example now to check for letter.
Example
public class Demo { public static void main(String []args) { System.out.println("Checking whether the given value is a Letter or not..."); char val = 'D'; System.out.println("Value: "+val); if (Character.isLetter(val)) { System.out.println("Value is a letter!"); }else { System.out.println("Value is a number!"); } } }
Output
Checking whether the given value is a Letter or not... Value: D Value is a letter!
Let us see another example.
Example
public class Demo { public static void main(String []args) { System.out.println("Checking whether the given value is a Letter or not..."); int val = 20; System.out.println("Value: "+val); if (Character.isLetter(val)) { System.out.println("Value is a letter!"); }else { System.out.println("Value is not a letter!"); } } }
Output
Checking whether the given value is a Letter or not... Value: 20 Value is not a letter!
- Related Articles
- Check whether the entered value is a digit or not in Java
- Check whether the entered value is whitespace or not in Java
- Check if the value entered is palindrome or not using C language
- Java Program to check whether the entered value is ASCII 7 bit alphabetic
- 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 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 HashSet is empty or not in Java
- Check whether a character is Uppercase or not in Java
- Check whether the file is hidden or not in Java
- Check If the Rune is a Letter or not in Golang
- Check whether a NavigableMap empty or not in Java

Advertisements