Hello,
I'm playing with sorting office filters and can't seem to understand how filter conditions exactly work.
Specifically, what's the difference between conditions:
contains
match
contains any of
matches any of
matches all as regexp
For instance how to match "pill" but not "pillow" or "spill" ?
Also as I read it's possible to check for many strings at once by separating them with a pipe | character - if so, what's the difference between
Subject -> match -> word1|word2
and
Subject -> matches any of -> word1|word2
Also how to separate regexes, where | has a special meaning?
I know I can find the answers by testing, but guess someone did it already and may share his knowledge.
Or maybe there is a tutorial on this somewhere?
Thanks
I'm playing with sorting office filters and can't seem to understand how filter conditions exactly work.
Specifically, what's the difference between conditions:
contains
match
contains any of
matches any of
matches all as regexp
For instance how to match "pill" but not "pillow" or "spill" ?
Also as I read it's possible to check for many strings at once by separating them with a pipe | character - if so, what's the difference between
Subject -> match -> word1|word2
and
Subject -> matches any of -> word1|word2
Also how to separate regexes, where | has a special meaning?
I know I can find the answers by testing, but guess someone did it already and may share his knowledge.
Or maybe there is a tutorial on this somewhere?
Thanks