So I want to add something to my whitelist such that what ever begins with the prefix a
and does not continue with b
should be blocked.
Example:
a.b.blah -> Good
a.c.blah -> Bad, should be blocked
I am not sure as how to go about writing that particular regex. Any pointers?