FAQ
Use these patterns and logic conditions to block messages that match specific keywords, links, or combinations.
Note:
Always enable Regex Mode when using these patterns.
Use \bword\b to match a full word only.
Escape special characters like . β \. when needed.
π« Q: How do I block messages containing any link?
Regex Pattern:
(http|https|www)\S+Example Message:
Visit https://example.com for more info.
β Result: Blocked
β οΈ Q: How do I block messages with words like βscamβ or βfraudβ?
Regex Pattern:
(scam|fraud)Example Message:
This is a fraud alert.
β Result: Blocked
π§ Q: How do I block messages that contain both βbuyβ and βcheapβ?
Regex Pattern:
Example Message:
Buy this product for a cheap price!
β Result: Blocked
β
Q: How to block messages that contain both βbuyβ AND βcheapβ?
Setup:
Condition 1: buy
Add AND β cheap
Example Message:
Buy this product for a cheap price!
β Result: Blocked
π Q: How to block messages that contain either βspamβOR βadβ?
Setup:
Condition 1: spam
Add OR β ad
Example Message:
This is a spam message with an ad.
β Result: Blocked
π§© Q: How to combine multiple AND/OR conditions?
Setup:
Condition 1: buy
AND β cheap
OR β scam
Example Messages:
Message
Result
Buy this product for a cheap price!
β Blocked
This is a scam message
β Blocked
Buy now
β Not blocked
Last updated
Was this helpful?