Find and Replace
Paste text, enter what to find and what to replace it with. Use regular expressions with $1-style groups for complex edits.
Result
Paste text and enter what to find.
About this tool
Bulk replacement fixes a misspelt name across a document, swaps separators in a list, or reformats dates in a log. Plain mode treats the search as literal characters; Whole words prevents “cat” from matching “category”; Match case distinguishes “Apple” from “apple”. Regular expressions unlock pattern edits: turn 2026-09-06 into 06/09/2026 with (\d{4})-(\d{2})-(\d{2}) → $3/$2/$1.
The count shows how many matches were replaced so you can sanity-check the result before copying. Everything runs in your browser; nothing is sent anywhere.
Frequently asked questions
- How do I replace line breaks?
- Enable Regular expression and search for \n. To turn a comma list into lines, search for , and replace with \n.
- How do I insert the matched text in the replacement?
- In regex mode use $& for the whole match or $1, $2 for capture groups.
- Why is my dollar sign disappearing?
- In plain mode dollar signs are literal. In regex mode write $$ for a literal dollar.