Ad
Result
Common use cases
- Bulk-update names, URLs, or paths in a document
- Strip unwanted text from a copy-pasted block
- Apply regex transformations without opening an editor
- Clean up CSV exports
Frequently asked questions
How do I use regex capture groups in the replacement?
Use $1, $2, etc. For example, find <code>(\w+)@(\w+)</code> and replace with <code>$2.$1</code> to swap the parts of an email-like string.
What if my Find string contains regex special chars?
Leave "Use regular expression" unchecked — the find term is treated as a literal string and special characters are auto-escaped.