Find & Replace
Bulk find and replace across any text, with regex, case sensitivity, and whole-word matching.
100% in your browser. Nothing is uploaded.
Result
Frequently asked questions
Is my text uploaded anywhere?
No. Find and replace runs entirely in your browser. Nothing is sent to a server.
How do I use capture groups?
Turn on "Regex" and reference capture groups in the replacement with $1, $2, and so on. For example, find (\w+)@(\w+) and replace with $2.$1 to swap around an @ sign.
What does "whole word" do?
It wraps your search term in word boundaries so "cat" matches the word cat but not "category". It applies in plain-text mode; in regex mode, add \b yourself.