Text & Writing

Find and replace

Bulk-replace in any text, regex included.

  • Instant
  • Free
  • Private (processed locally)
  • No sign-up

Result

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.

  1. Paste the text

    The match counter reacts as soon as you type the search term.

  2. Set the options

    Case ignored by default; tick “Regular expression” for advanced patterns.

  3. Copy the result

    The replacement is applied live — one click and it is in your clipboard.

Ready-to-use regex recipes

FindReplace withEffect
\d+NAnonymize all numbers
+$Strip trailing spaces
(\w+) (\w+)$2 $1Swap two words
^- Prefix every line (bullet list)
\n\n+\nCollapse 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.