Quote:
|
Originally Posted by midwest
[^name|.*]@domain.com
which mean: NOT "name" OR "multiple anythings"
you may need to use slashes to enclose the expression
/[^nm|.*]@domain.com/
|
I placed this in my ignore list:
from [^.*]nm@domain.com
It will match anything BUT
nm@domain.com, when there are at least three letters.
How do you test regex? I'm using Regex Coach.