Text Tools
Find and replace text
Replace plain text or regular expression matches, with a live count of how many replacements were made.
- Free, no signup
- No upload — runs on your device
- No watermark
- Unlimited use
Find and Replace
Processed locallyThe replacement count is the only way to know it worked
The classic find-and-replace disaster is replacing a word that appears inside another word. Replace art with craft and started becomes stcrafted. You will not see it, because it happens on line 340 of a document you already read.
The count guards against this. If you expected twelve replacements and the tool reports thirty-one, stop. Something matched that you did not intend. In plain-text mode, the fix is usually to include the surrounding spaces in your search term. In regex mode, wrap the term in word boundaries: \bart\b matches the word and not the fragment.
Regex mode also unlocks capture groups. Search (\w+)@(\w+)\.com and replace with $2/$1 to reshape every email in a list. The $1 and $2 refer to the parenthesised groups, numbered left to right.
How it works
- Paste your text
- Type what to find and what to replace it with
- Check the replacement count, then copy the result