- Jan 23, 2021
You can run a regular expression search in a text file for any lines that do NOT begin with a particular string. In this example, we want to find any lines that do not begin with the string 'ins'. Structure your search this way:
^(?:(?!ins).)*$









