Trying to NOT match a list of words but words are case insensitive
Administrator --> not match
aDmInIsTrAtOr --> not match
Root --> not match
root --> not match
but I want to accept anything else
jsmith --> match
JSmith --> match
Any_Text_Really --> match
Any_meta_char_%$#!_and_12345 --> match
I can make the positive match for insensitive words
^(?i)administrator$|^(?i)root$
But fail to make it reversed ? Based on "(?:x) Matches 'x' but does NOT remember the match. Also known as NON-capturing parenthesis" I tried:
^(?:(?i)administrator)$
But that fails too. Any idea ?