Using Notepad++, how do I remove all lines with a 1,2 sequence? Example list below...
1 2 3 8 9
1 3 4 8 9
2 3 4 8 9
1 2 5 8 9
1 3 5 8 9
2 3 5 8 9
1 2 6 8 9
Using Notepad++, how do I remove all lines with a 1,2 sequence? Example list below...
1 2 3 8 9
1 3 4 8 9
2 3 4 8 9
1 2 5 8 9
1 3 5 8 9
2 3 5 8 9
1 2 6 8 9
enable regexes and Ctrl F for this:
^1 2 (.*)$
replace with nothing, and click replace all.
source, tested on my n++, works fine.
edit see comment if you want to remove linebreaks