Find lines not starting with " in Notepad++

Solution 1:

In regex, the ! does not mean negation; instead, you want to negate a character set with [^"]. The brackets, [], denote a character set and if it starts with a ^ that means "not this character set".

So, if you wanted to match things that are not double-quotes, you would use [^"]; if you don't want to match any quotes, you could use [^"'], etc.

With Notepad++, you should be able to search with the following to find lines that don't start with the " character:

^[^"]

If you want to highlight the full line, use:

^[^"].*

Solution 2:

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.

Explanation part

^ line start

(?!regexp) negative lookahead part: this means that if the regexp match, the result will not be shown