Before posting this question I have gone through the Regex Wiki and the following SO questions as well:
How to exclude a specific string constant?
Here is what I have gotten working, which is partially what I want:
(?!INVALID).*$
The first SO post actually solves my problem a little bit after editing the posted regex
The problem with what I have working is the regex fails when the word starts with INVALID
So basically :
TestINVALID
will workTestINVALID123
will workINVALID
will not match which is what I want so will work- But
INVALIDTest
will not work, it will not match
I want the regex to not match only and only if string exactly matches "INVALID"