🔍

Find & Replace

Search and replace text with support for regex, case-insensitive and global replace.

Input
Output

How to Use

1
Enter your textPaste the text you want to modify into the Input field.
2
Type what to findEnter the text or pattern you want to search for in the Find field.
3
Enter replacementType the replacement text. Leave empty to delete the found text.
4
Set optionsToggle Regex, Case Sensitive, and Replace All as needed.
5
Click ReplaceThe result appears in the Output field. Copy it with the Copy button.
📌 Processing happens entirely in your browser. Your text is never sent to a server.

About Find & Replace

Editing and transforming text manually is tedious and error-prone. Find & Replace automates the process so you can search and replace text with support for regex, case-insensitive and global replace in one click. It works with any length of text, from a single sentence to thousands of lines, and runs entirely in your browser for complete privacy.

Frequently Asked Questions

Enable "Use Regex" checkbox, then enter a valid JavaScript regex pattern in the Find field (without slashes). Example: `\d+` finds all numbers. Capture groups work in the Replace field using $1, $2, etc.
Leave the "Replace with" field empty and click Replace. All matches will be deleted from the text.
When checked, all occurrences of the search term are replaced. When unchecked, only the first occurrence is replaced.
Yes! With Regex enabled, use $1, $2, etc. in the Replace field to reference capture groups. Example: Find `(\w+) (\w+)`, Replace `$2 $1` swaps two words.