I am trying to use the Notepad++ RegEx feature to search through a few thousand files to match a particular pattern. The files contain logged data with the lines of interest starting with "LOG:" followed by comma separated data. Of these lines I am interested in finding those where a certain column does not equal "0" or "00".
Example data set. I am interested in the 5th column as shown in bold:
LOG:69369,1,30,40,80,06,1
LOG:69369,1,30,40,C0,06,1
POS:69453,69576034,-19244227,1,0
LOG:69405,2,30,40,00,06,2
POS:69333,69576024,-19244235,1,0
LOG:69405,2,30,40,C0,06,2
To start with I have an expression that does the opposite, that is is finds only those lines where column 5 equals "0" or "00":
^(LOG:).*,.*,.*,.*,((0)|(00)),.*$
How do I change this to find all the "LOG:" lines where column 5 IS NOT "0" or "00" (In this example I want to match the 1st, 2nd and last lines)?
Use a negative lookahead based regex.
DEMO