Text — tool

Find / Replace

Replace plain text or regular-expression matches safely.

About Find / Replace

Find the first or every occurrence using literal or regular-expression matching, with case and multiline controls.

Find / Replace supports literal text and JavaScript regular expressions. Controls for case, multiline anchors, and replacing one or every match make it suitable for both simple editorial corrections and structured cleanup.

How to use it

  1. Enter or select your source data.
  2. Adjust the available options and run the tool.
  3. Review, copy, or download the result.

Common use cases

  • Standardize terminology across a document.
  • Remove or rewrite repeated prefixes in copied data.
  • Use capture groups to reorganize consistently formatted text.

Worked example

Replace every occurrence of colour with color in a document.

Limitations and responsible use

  • Regular expressions use JavaScript syntax, which differs from PCRE, .NET, or editor-specific flavors.
  • A pathological expression can make the browser tab unresponsive.
  • The tool works on plain text and does not preserve rich-text formatting.

Frequently asked questions

Are replacement capture groups supported?

Yes. In regex mode, JavaScript replacement tokens such as $1 can reference captured groups.

How do I replace the search text literally?

Leave regular-expression mode disabled; special characters will then be escaped automatically.