Find and Replace
Find and replace all matches of a word or phrase across a block of text, with optional case sensitivity, whole-word matching, and regex support.
Text
Result (2 replaced)
Ad space
Frequently asked questions
Can I use a regular expression as the search term?+
Yes, enable "Use regex" to treat the Find field as a regular expression instead of literal text.
How do I replace a match with itself plus extra text?+
With regex enabled, use capture groups in Find like (\w+) and reference them in Replace with $1.
Does this replace all matches or just the first one?+
All matches are replaced in one pass.