Regex for lines that do not begin with X
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).)*$
