Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the best and/or easiest to learn way to recognize if a string.charAt(index) is an A-z letter or a number in Java without using regular expressions? Thanks.

share|improve this question

4 Answers

up vote 9 down vote accepted

Charcter.isDigit(string.charAt(index)) javadoc will tell you if it's a digit Character.isLetter(string.charAt(index)) javadoc will tell you if it's a letter

share|improve this answer
Note: that these tell you if the character is a Unicode letter / digit. The OP asked for "an A-z letter" ... whatever that means. – Stephen C Oct 29 '10 at 0:58

I don't know about best, but this seems pretty simple to me:

Character.isDigit(str.charAt(index))
Character.isLetter(str.charAt(index))
share|improve this answer

As the answers indicate (if you examine them carefully!), your question is ambiguous. What do you mean by "an A-z letter" or a digit?

  • If you want to know if a character is a Unicode letter or digit, then use the Character.isLetter and Character.isDigit methods.

  • If you want to know if a character is an ASCII letter or digit, then the best thing to do is to test by comparing with the character ranges 'a' to 'z', 'A' to 'Z' and '0' to '9'.

Note that all ASCII letters / digits are Unicode letters / digits ... but there are many Unicode letters / digits characters that are not ASCII. For example, accented letters, cyrillic, sanskrit, ...

share|improve this answer

Compare its value. It should be between the value of 'a' and 'z', 'A' and 'Z', '0' and '9'

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.