I try to verify a CSV file where we had problems with line breaks.
I want to find all lines not starting with a \".
I am trying with /!^\"
In Notepad++ you can use the very usefull negative lookahead
In your case you can try the following:
^(?!")
If you want to match wholes lines add .+ or .{1,7} or anything e.g.:
^(?!").*
will also match empty lines.
^ line start
(?!regexp) negative lookahead part: this means that if the regexp match, the result will not be shown