I was looking for a single regular expression that could match everything that does NOT contain a given set of substrings.
For example, a regular expression that will match everything that does not contain the substrings "abc", "def", ghi"
In this example, the regex would match against "student", "apple" and "maria", but would not match against "definition", "ghint" or "abc123"
Thanks in advance