Find and replace is a text tool that substitutes any term inside a block of text. It supports plain or regular-expression search, case-sensitive and whole-word matching, and shows a live match count as you type. The tool runs in your browser.
Input text
Result
FIND & REPLACE
Mode-specific and use-case find and replace tools.
RegExp from the find term. Plain mode escapes regex metacharacters; whole-word mode wraps the pattern in \b boundaries; replacement uses String.prototype.replace with the global flag.RegExp and string methods. No external library.matchAll.Reviewed and tested May 25, 2026.