Regex search for everything but . . .
- Sean O'Shea
- Nov 13, 2020
- 1 min read
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.
