Find & Replace applies substitutions across a block of text with full regular expression support and optional case-sensitive matching. The match count updates live so you know exactly what will change before you copy the output.
JavaScript regular expression syntax — character classes, quantifiers, groups, lookaheads/lookbehinds, and all standard ECMAScript regex features.
Yes. When regex mode is on, use $1, $2, etc. in the replacement string to reference capture groups from your pattern.
The tool shows an error indicating the pattern couldn't be compiled, so you can fix the syntax before applying it.
All occurrences are replaced by default — both in plain text mode and regex mode (using the global flag).
Toggling case-sensitivity adds or removes the 'i' flag on the regular expression, affecting whether the pattern matches regardless of letter case.
Yes — leave the replacement field empty to delete all matches of your find pattern.
The live match count previews how many substitutions will occur, so you can verify your pattern is correct before committing to the replacement.