I want to specify a regex that finds if there are any non letter non number chars in a String.
Basically I want it to accept [a-z][A-Z][0-9] in any order any combination..i.e "2a4A44awA" should be valid.
How can I do this?
|
|
|
Instead of:
Match with:
From the API:
|
|||
returns true if illegal character is present. Edit: But the first answer from jzd is better:
Returns true if illegal character not present, ie the string is good. |
|||
|