Boolean search "and not"

If you are experiencing problems with "Everything", post here for assistance.
Post Reply
jsampson45
Posts: 17
Joined: Mon Sep 21, 2015 8:32 pm

Boolean search "and not"

Post by jsampson45 »

I want to search for all filenames with "inv.doc" in them but to exclude filenames ending in "axx". I would have thought "inv.doc !axx" would do this, but nothing is found. Is there a way of doing this?
void
Developer
Posts: 16669
Joined: Fri Oct 16, 2009 11:31 pm

Re: Boolean search "and not"

Post by void »

inv.doc !axx should show some results.

Please make sure Regex is disabled from the Search menu.
jsampson45
Posts: 17
Joined: Mon Sep 21, 2015 8:32 pm

Re: Boolean search "and not"

Post by jsampson45 »

I disabled regexes but this made no difference. "axx" and "inv.doc" are not whole filenames - "axx" is a suffix and "inv.doc" is a string included in the filenames of the files I want to find.
void
Developer
Posts: 16669
Joined: Fri Oct 16, 2009 11:31 pm

Re: Boolean search "and not"

Post by void »

Please try:

Code: Select all

inv.doc !*axx
Post Reply