I want to write a regex to match characters a-z except for e, n p. I can write:
[a-df-moq-z]
I'm just wondering if there's a way to write something like ([a-z except ^enp]) just to make the regex more easy to decipher which characters are excluded.