I have the following text in notepad ++
192.168.0.1 37 ms N/A
192.168.0.2 Dead N/S
192.168.0.3 Dead N/S
192.168.0.100 37 ms N/A
I want to do a find and replace that matches "Dead" and eliminates the line with output like this:
192.168.0.1 37 ms N/A
192.168.0.100 37 ms N/A
Please note that I have used the following regex ^.*Dead.*$ that does remove the lines, but doesn't delete the empty spaces.
