Keyword Information
Match Type Guide
- Contains: Word appears anywhere in the message
- Exact: Message matches the word exactly
- Starts With: Message begins with the word
- Ends With: Message ends with the word
- Regex: Use regular expressions for complex patterns
Regex Pattern Examples
Click any example to use it:
Communication Patterns
Financial Patterns
Common Regex Syntax
\d | Any digit (0-9) | \w | Any word character |
\s | Any whitespace | . | Any character |
* | 0 or more | + | 1 or more |
? | 0 or 1 | {3} | Exactly 3 |
^ | Start of string | $ | End of string |
| | OR operator | () | Grouping |