Find & Replace
Bulk find and replace with regex support
Result
Plain text or regular expression?
With regular expression off, your search term is matched literally — a full stop means a full stop, and you do not need to escape anything. That is what you want for ordinary substitutions like renaming a product or fixing a repeated typo.
Switch it on when the thing you are matching is a pattern rather than a fixed string. A few that come up often:
\d+— one or more digits\s+— any run of whitespace^and$— start and end of the text(\w+)@(\w+)— capture groups, reusable in the replacement as$1and$2
The match count updates as you type, so you can check a pattern hits what you expect before trusting the output.
Other text tools
Case Converter
Convert text between seven letter cases
Word & Character Counter
Count words, characters, sentences and reading time
Remove Line Breaks
Strip line breaks and clean up whitespace
Text Diff Checker
Compare two texts and highlight differences
Sort & Dedupe Lines
Alphabetise, reverse, shuffle and remove duplicates
Slug Generator
Turn any title into a clean URL slug