Advanced usage of Notepad++ find-in-files filter

14

In the Notepad++ Find in Files dialog, there is a box for filter. Normally you would enter something like *.txt in there. Are there more advanced ways to use the filter?

Specifically, I am looking for the following functionality:

  • Search all files except those of a specific extension
  • Search multiple file extensions

Is this possible?

Brad

Posted 2011-07-21T15:07:57.283

Reputation: 4 459

Similar question: http://stackoverflow.com/questions/4198829/notepad-find-in-file-filter-exclude

– MBraedley – 2011-07-21T15:18:50.010

Answers

14

While I don't know how to search in all files except of a type, you can search in multiple file types by separating them with semicolons.

As in:

*.txt;*.lua;*.toc

Carighan Maconar

Posted 2011-07-21T15:07:57.283

Reputation: 676

1

Space can be used instead of semicolon as well. http://superuser.com/a/84609/508000

– Tamás Bolvári – 2017-01-11T16:50:56.413

1Awesome! I was trying commas and what not. This will help greatly, thank you. – Brad – 2011-08-16T13:31:57.480