For the complete documentation index, see llms.txt. This page is also available as Markdown.

FAQ

Here are some useful Regex patterns to help you filter and forward messages based on specific content.

Regex Pattern:

(telegram\.me|t\.me)/\w+

Example Message:

Join us at https://t.me/example_channel.

✅ Result: Message will be forwarded.


⚫ Q: How do I forward messages that contain either “black” or “white”?

Regex Pattern:

(black|white)

Example Message:

The shirt is black, and the shoes are white.

✅ Result: Message will be forwarded.


📌 Q: How to match the word “es” as a whole word only?

Regex Pattern:

Example Message:

This is es.

✅ Result: Message will be forwarded.


🧠 Q: How to forward messages that contain both “work1” and “work2”?

Regex Pattern:

Example Messages:

  • I have work1 to do and work2 as well.

  • work1 and work2 are both important.

  • Only work1 is complete. → Not forwarded


🎨 Q: How do I forward messages that contain either “red” or “blue”?

Regex Pattern:

Example Message:

The car is blue.

✅ Result: Message will be forwarded.


Last updated