Find & Replace

Search for any word or pattern in your text and replace it with something else — all in the browser, no editor needed. Switch to regex mode for powerful pattern-based replacements, including capture group references like $1 in the replacement string. The match count updates in real time so you always know how many instances are affected before committing to the change.

All processing happens in your browser. No data is sent to any server.

Frequently Asked Questions

Does it support regular expressions?
Yes. Toggle Regex mode and you can use any valid JavaScript regular expression pattern, with full flag support including global, case-insensitive, and multiline.
How do I match a literal special character in regex mode?
Escape it with a backslash. For example, to match a literal dot use \. in the pattern field, or a literal bracket with \[.
Can I use capture groups in the replacement string?
Yes — in regex mode use $1, $2, etc. in the replacement field to insert the text captured by each group from the pattern.

Related Tools