How to add more Subjects to "Exlude items" #1971
-
Hi, I want to add more subjects to "Subject that contains". For example: I have events with dinner and lunch. How do I exlude both of those events? |
Beta Was this translation helpful? Give feedback.
Answered by
phw198
Sep 17, 2024
Replies: 1 comment
-
It uses regular expressions, so you'd write something like You can use eg www.regex101.com to test your pattern matching. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
phw198
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It uses regular expressions, so you'd write something like
(dinner|lunch)
.You can use eg www.regex101.com to test your pattern matching.