Regex find & replace
Find-and-replace with full regex power - capture groups, named groups, and all standard flags.
Flags:Active:
/(\w+)@(\w+\.\w+)/gMatch details
| # | Pos | Original | → Replaced |
|---|---|---|---|
| 1 | 14 | support@example.com | [support at example.com] |
| 2 | 37 | sales@gkit.io | [sales at gkit.io] |