Find and Replace

Replace across your whole text at once, with plain text or regular expressions and a live count of replacements.

How to use

  1. Paste your text.
  2. Enter what to find and the replacement.
  3. Toggle regex or ignore-case if needed, then copy the result.

Examples

Normalize dates
Input: Find: (\d{2})/(\d{2}) - Replace: $2-$1
Output: Every 22/09 becomes 09-22.

Frequently asked questions

Regex groups?

Yes - use $1, $2 in the replacement to reference capture groups.

Related tools