# FAQ

{% hint style="warning" %}
Note:

* Always enable Regex Mode when using these patterns.
* Use \bword\b to match a full word only.
* Escape special characters like . → \\. when needed.
  {% endhint %}

#### 🔗 Q: How do I forward messages that contain Telegram links?

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:

```
\bes\b
```

Example Message:

> This is es.

✅ Result: Message will be forwarded.

***

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

Regex Pattern:

```
^(?=.*\bwork1\b)(?=.*\bwork2\b).*
```

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:

```
(red|blue)
```

Example Message:

> The car is blue.

✅ Result: Message will be forwarded.

***


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs-v2.autoforwardtelegram.com/filters/whitelist/faq.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
