Here is a regex that finds only those lines that do not contain the particular string value: “find lines without this string”
^((?!find lines without this string).)*$
Here is a regex that finds only those lines that do not contain the particular string value: “find lines without this string”
^((?!find lines without this string).)*$
thnaks … you save many hours for me