Is it possible to have one block/allow rule containing multiple words or phrases? For example, a block rule like "Contains word1, word2, word3, “phrase here”
Thanks.
Is it possible to have one block/allow rule containing multiple words or phrases? For example, a block rule like "Contains word1, word2, word3, “phrase here”
Thanks.
You could do that with a matches regex rule, but I think it would probably be counterproductive. What is your goal here?
Simplification. One rule for multiple selections vs one rule per exclusionary word or phrase. I’m lazy.
You could write a regex like:
(word1|word2|a phrase)
but I recommend separate rules because:
Thanks for the insights, Michael. Very helpful.