Page 1 of 1

Exclude specific words from search

Posted: Sun May 22, 2022 8:01 pm
by believingjew
Hello, I need to exclude specific words from a search, to reducer the number of responses. As an example if I search for "John Wayne" I need to exclude "Gacy" so I just get hits from the movie actor and not the child killer. Thank you.

Re: Exclude specific words from search

Posted: Mon May 23, 2022 4:49 am
by Gripweed107
In filter enter "-Gacy" (no quotes)

Re: Exclude specific words from search

Posted: Mon Jul 24, 2023 8:41 pm
by deadtedw
Found a solution:

To exclude a term from a search:
Right-click the Filter box and make sure Use Regular Expressions is checked.
Paste this into the Filter box (replace word1 with term you want to exclude): ^((?!word1).)*$
To exclude more than one term, paste this and separate terms with a pipe |: ^((?!word1|word2).)*$