Try this:
^(?!system$)
Or this to match the whole line:
^(?!system$).*$
The regex has a negative look-ahead on its beginning, which doesn’t match if “system” is the entire string.
Try this:
^(?!system$)
Or this to match the whole line:
^(?!system$).*$
The regex has a negative look-ahead on its beginning, which doesn’t match if “system” is the entire string.