KnowledgeBoat Logo
|

Computer Applications

Distinguish between isDigit() and isLetter()

Java Library Classes

1 Like

Answer

isDigit()isLetter()
isDigit() method returns true if the specified character is a digit; returns false otherwise.isLetter() method returns true if the specified character is a letter; returns false otherwise.

Answered By

1 Like


Related Questions