TL;DR
Use AutoForward.net's Regex Replace feature to automatically strip ref links, @usernames, and watermarks from copied signals before forwarding — keep signals clean.
Common Regex Patterns
| Target | Regex Pattern | Replace with |
|---|---|---|
| Remove @username | @\w+ | ` |
| Remove t.me links | https?://t\.me/\S+ | |
| Remove all URLs | https?://\S+ | |
| Remove phone numbers | \+?\d[\d\s\-]{8,}\d | |
| Remove hashtags | #\w+ | |
Step-by-Step Setup
- Open the Rule you want to edit
- Go to Filters tab → Regex Replace
- Add Pattern → Replacement pairs
- Test with a sample message before saving
FAQ
Is Regex case-sensitive?
Yes by default. Add (?i)` prefix to make it case-insensitive.
Can I use multiple Regex rules at once?
Yes. AutoForward applies them in order from top to bottom.