rahrahruby
rahrahruby

Reputation: 693

notepad++ regular regex

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

Upvotes: 2

Views: 456

Answers (1)

VOX
VOX

Reputation: 2923

return\ [^1]

use above regex

Upvotes: 5

Related Questions