tags:

views:

61

answers:

1

I have a document that I have opened in notepad ++ that has the following line, "return 1". I also have cases where it says "return 2" I want to be able to do a find where !return 1. So I want to find and count every thing that is not "return 1"

Thanks

+3  A: 
return\ [^1]

use above regex

VOX
Thanks that did!
rahrahruby
glad that works. You can accept my answer by clicking gray mark right icon on the left :P
VOX