Possible Duplicate:
notepad++ Inverse Regex replace (all but string)
Let's say I have the following ...
http://whateverurl.com/is-not-wanted-but-it-is-here-anyway
http://icantbelieveibeenonthisallday.com/i-want-to-shoot-myself
http://hereiswhatireallywant.net/hey-there-sweet-thang
http://howsithangingloser.org/i-hope-someone-helps-you
http://heresanotherbeauty.net/that-i-want-to-be-all-up-in
I want to find only the lines that DON'T contain ".net/", so I can then replace it with nothing, hence delete.
I searched online and this site and found the (?!xxx) string, so I was trying to do the (?!.net/) but it seems that Notepad++ doesn't support that string or I may be using it wrong since I'm new to RegEx.
Can anyone tell me how to find a line that excludes a certain string of characters in Notepad++ ?