I have this regular expression:
^[a-zA-Z0-9]
I am trying to select any characters except digits or letters, but when I test this, only the first character is matched.
When I use
[a-zA-Z0-9]
the matches are correctly digits and letters. I need to negate it, but the ^
does not work.