Done

πŸ” Find and Replace Text

Find, highlight and replace text with regex support, case sensitivity, whole word matching, multi-rule replacement, and live preview.

Input Text
Chars: 0
Words: 0
Lines: 0
Find & Replace
0 matches
Multi-Rule Replace
Rules are applied sequentially top to bottom.
Live Highlight Preview
Matches highlighted in yellow
Enter text and a search term to see highlights…
History
No replacements yet.
Regex Reference
Pattern Matches
\d+One or more digits
\w+Word characters
\s+Whitespace
^Start of line
$End of line
.Any character
[a-z]Character range
(x|y)x or y
$1, $2Capture groups in replace

About Find & Replace

Case Sensitivity

Toggle case matching to distinguish between "Hello" and "hello". Useful for code identifiers and proper noun replacements.

Whole Word

Match only complete words β€” searching "cat" won't match "concatenate". Uses word boundaries (\b) internally to isolate exact word matches.

Regex Mode

Enable full regular expression support. Use patterns like \d+ for numbers, [A-Z]+ for uppercase, or (word1|word2) to match multiple terms at once.

Multi-Rule

Apply multiple find-replace rules in sequence. Perfect for bulk text normalization, code refactoring, or cleaning CSV/TSV data in one step.