Character.isLetter(c) returns true if the character is a letter. But is there a way to quickly find if a String only contains the base characters of ASCII?
|
Using Guava you could just write:
|
|||||||||||||||||
|
|
You can do it with java.nio.charset.Charset.
|
|||||||
|
|
Here is another way not depending on a library but using a regex. You can use this single line:
Whole example program:
|
|||
|
|
|
Iterate through the string and make sure all the characters have a value less than 128. Java Strings are conceptually encoded as UTF-16. In UTF-16, the ASCII character set is encoded as the values 0 - 127 and the encoding for any non ASCII character (which may consist of more than one Java char) is guaranteed not to include the numbers 0 - 127 |
|||
|
|
|
Iterate through the string, and use charAt() to get the char. Then treat it as an int, and see if it has a unicode value (a superset of ASCII) which you like. Break at the first you don't like. |
|||
|
|
|
Or you copy the code from the IDN class.
|
|||
|
|
