0

I have several lines win one word in each in my Notepad++. How to select all words not not containing Set ant Get phrase.

SetBlaBla1
BlaGetBla2
BlaBla3

Result should be BlaBla3

vico
  • 17,051
  • 45
  • 159
  • 315
  • 1
    You could select (mark) all lines that contain `Get` or `Set` then invert the marks. – Toto Sep 05 '16 at 10:45

1 Answers1

1

Try negative look-ahead, something like this:

^((?!Set|Get).)*$
Hrabosch
  • 1,541
  • 8
  • 12