Regex search for everything but . . .
top of page

Regex search for everything but . . .

If you want to run a regular expression search which will find all characters except a few that you designate, you should use this format:


[^0123]


. . . this Regex will return all characters except those listed after the caret in the brackets.






bottom of page