Exclude keywords Using Options/Exclude

General discussion related to "Everything".
Post Reply
cloves
Posts: 7
Joined: Wed Jan 06, 2010 9:01 pm

Exclude keywords Using Options/Exclude

Post by cloves »

I can't seem to figure out how to exclude files that contain a certain word in their naming. In the exclude section, I see how to exclude file extensions (eg.*.lnk, *.jpg,)

Searched the forum but no results on just keyword.

Thanks in advance
void
Developer
Posts: 15354
Joined: Fri Oct 16, 2009 11:31 pm

Re: Exclude keywords Using Options/Exclude

Post by void »

Please try the following exclude filter:

*keyword*

This will work best if you include punctuation with your keyword for example:
*.keyword.*



However, if you exclude:

*foo*

This will exclude food



To exclude whole words, please try the following exclude filter:

regex:\bkeyword\b

regex: = enable regular expressions.
\b = match a word boundary.
Post Reply