I need a method that can tell me if a String has non alphanumeric characters.
For example if the String is "abcdef?" or "abcdefà", the method must return true.
|
I need a method that can tell me if a String has non alphanumeric characters. For example if the String is "abcdef?" or "abcdefà", the method must return true. |
|||||
|
|
Using Apache Commons Lang:
Alternativly iterate over String's characters and check with:
You've still one problem left:
Your example string "abcdefà" is alphanumeric, since So you may want to use regular expression instead:
|
||||
|
One approach is to do that using the String class itself. Let's say that your string is something like that:
one other is to use an external library, such as Apache commons:
|
|||||||||||
|
|
You have to go through each character in the String and check Alternatively, you can use regex. |
|||
|
|
|
If you can use the Apache Commons library then Commons-Lang StringUtils has a method called isAlphaumeric() that does what you're looking for. |
|||
|
|
|
||||
|