Text Tools
Paste text in the input box, type what you want to find and what to replace it with, then click Replace all. The output shows the modified text instantly. Use the options for case-sensitive matching, whole-word only, or full regular expression support. No account needed, no data sent to any server.
Find and replace scans your text for every occurrence of the search term and substitutes each match with the replacement. By default it is case-insensitive and matches any position within a word. Toggle options to narrow or widen what counts as a match.
Enable "Use regex" to use JavaScript-compatible regular expressions in the Find field. This unlocks powerful patterns: \d+ matches any number, [aeiou] matches any vowel, and (word1|word2) matches either term. In the Replace field you can reference captured groups with $1, $2, etc. For example, find (\w+) (\w+) and replace with $2 $1 to swap the first two words of every pair.
Writers use it to fix recurring typos, replace a character's name throughout a document, or standardise terminology. Developers use it to rename variables, update URLs, or reformat data. SEO professionals use it to bulk-update keyword references in content drafts. Data analysts use it to clean column values in exported text.
\d+ matches any sequence of digits. Capture groups let you rearrange matches using $1, $2 in the replacement.