answersLogoWhite

0


Best Answer

Use the Character.isLetter(char letter) method.

// This line will return true

Character.isLetter('a');

// This line will return false

Character.isLetter('4');

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How you find whether character is alphabet or not in java?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you find out whether Java is installed on Linux?

Enter "java -version" into a terminal. If Java is installed, it will tell you the version number. If it is not installed, it will say "command not found."


What is the ' ' called in java?

' ' would be the character for a space in Java.


Can a character in java apply in JOptionPane?

no!!


What is java string?

array of character data type which is terminated by null character


Why not a variable in java is declared starting with a numeric character?

The most likely reason for this is that allowing variable names to start with a number would introduce ambiguity as to whether a word is a variable or a number. As it is, the compiler can tell which is which just by examining the first character.


How can you get Java through foxfire?

To test whether Java is installed and enabled in Firefox, visit one of these Java test pages:Verify Java VersionVerify Java Version(alternate)When you visit these pages, you will normally need to activate Java. The article How to allow Java on trusted sites explains how.


Character use only one byte why Java use two byte for character?

The number of bytes used by a character varies from language to language. Java uses a 16-bit (two-byte) character so that it can represent many non-Latin characters in the Unicode character set.


How do you find out if your computer has java?

Open cmd and type java


Where can one find java plugin downloads?

There are several sites online where one can download the Java plugin such as Java, Oracle, Cnet, and Microsoft. One can find their current version of Java by visiting the Java Tester website.


What is the Full form of JAVA whether Javanese Architecture virutal Accerelation is correct or not?

JAVA stands for - Just Another Virtual ArchitectureThis is according to what I was told in JAVA class.


Why does java use unicode?

Transform character s into numbers (binary)


Which of these methods of string class is used to obtain character at specified index?

You don't specify "these methods", but chances are what you're looking for is the charAt method