Using regex how can I get a match where a string does not match any of the given strings, e.g. if I have the 3 strings below, I want to match only with FirstPartOfStringSecond by looking for strings that don’t match the other 2, i.e. <> ((FirstPartOfString + (First or Third))
FirstPartOfStringFirst
FirstPartOfStringSecond
FirstPartOfStringThird
Thanks
2