How do I find any string that starts with abc
and doesn't have the word test
anywhere in the rest of the string?
abc blah test (no match)
abc blah blah test (no match)
abc blah (match)
I found the following but I don't know how to put in the abc
part.
^(?!.*Test).*$