Find and Replace
Find and replace performs a bulk substitution across an entire block of text, with case-sensitivity, whole-word matching and full regular-expression support including capture groups. It reports how many replacements were made.
Your result will appear here.
Not sure where to start? Use Load example.
Results update automatically and are calculated on your device. Nothing you type is sent to a server.
Runs in your browser. Processing happens entirely in your browser. Nothing you enter is sent to Delimiter.live.
How to use the Find and Replace
- Paste your text into the input box.
- Type what to find and what to replace it with. Leave the replacement empty to delete matches.
- Pick plain text, whole words only, or regular expression matching.
- Check the replacement count under the result, then copy or download.
Example
Smith, John Doe, Jane
Regex: ^(\w+), (\w+)$ Replace: $2 $1 John Smith Jane Doe
Common use cases
- Renaming a term consistently across a long document.
- Removing a repeated prefix or boilerplate line from an export.
- Reformatting data with a regular expression and capture groups, for example turning "Last, First" into "First Last".
- Swapping delimiters in a pasted data block.
Limitations and things to watch for
- Regular expressions use the JavaScript flavour, which differs slightly from PCRE — lookbehind is supported in current browsers, and there are no possessive quantifiers or recursive patterns.
- A regular expression that can match an empty string is rejected rather than run, because it would loop indefinitely.
- Very large inputs combined with a catastrophically backtracking pattern can make the tab unresponsive; keep patterns specific.