Find and replace
Bulk-replace in any text, regex included.
- Instant
- Free
- Private (processed locally)
- No sign-up
The find-and-replace your clipboard is missing
Renaming a term throughout a document, fixing a recurring typo, reformatting a list: find-and-replace is the most used feature of text editors — here it is available everywhere, without opening Word or VS Code, with regex mode as a bonus.
-
Paste the text
The match counter reacts as soon as you type the search term.
-
Set the options
Case ignored by default; tick “Regular expression” for advanced patterns.
-
Copy the result
The replacement is applied live — one click and it is in your clipboard.
Ready-to-use regex recipes
| Find | Replace with | Effect |
|---|---|---|
| \d+ | N | Anonymize all numbers |
| +$ | Strip trailing spaces | |
| (\w+) (\w+) | $2 $1 | Swap two words |
| ^ | - | Prefix every line (bullet list) |
| \n\n+ | \n | Collapse multiple empty lines |
In regex mode, the characters . * + ? ( ) [ ] have special meaning: escape them with \ to match them literally (e.g. \. for a period).
Frequently asked questions
How do I replace all occurrences of a word?
Paste the text, type the word to find and its replacement: the counter shows the number of matches and the result updates live — every occurrence is replaced at once, not one by one.
What does the regular-expression mode allow?
Pattern replacements: \d+ for any number, ^ for line starts, [a-z]+ for letter runs… Capture groups work too: search (\w+)@(\w+) and replace with $2.$1 to swap the parts.
How do I replace across multiple lines?
In regex mode, \n stands for a line break: searching “,\n” and replacing with “, ” merges lines broken after commas, for instance.
Is my data sent anywhere?
No: search and replace run entirely in your browser. You can process confidential documents with complete peace of mind.