I would like to know if there's any logical and
operators in a regex, for example I want to do something like match a-z and A-Z but not e/E/i/I.
I tried something like
[a-zA-Z]&[^eEiI]
But it's just plain wrong, there's no such operator in any regexes.
But weirdly there's an or
operator that can be used within groups like (x|y).
So I was wondering if there's any work around when there's a need to include a logical and
condition in regexes.