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.
|
|
|||
|
|
I don't know about best, but this seems pretty simple to me:
|
||||
|
|
|
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?
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, ... |
||||
|
|
|
Compare its value. It should be between the value of 'a' and 'z', 'A' and 'Z', '0' and '9' |
|||
|
|