Find and Replace
A free find and replace online tool to search and replace text online with full regex support, a case-sensitive option, whole-word matching, and a live preview. Use online search and replace to swap keywords, replace characters, and find and replace word content in bulk across any document, including text pasted from Word, without opening an editor.
Find and replace with regex support
Built for power users with simple defaults for everyone else.
Live preview
Output updates as you type. No "search next" needed.
Full regex support
JavaScript-compatible regex with capture groups and backreferences.
Match count
See exactly how many matches will be replaced.
Case sensitive option
Toggle exact case matching.
Whole word matching
Match "cat" without matching "category".
100% private
Text never leaves your browser.
Who uses Find and Replace?
Anyone who needs bulk text edits.
For writers
Replace character names across a manuscript, fix consistent terminology.
For developers
Bulk rename variables, refactor without an IDE, clean up logs.
For data analysts
Standardise CSV values, normalise date formats, replace nulls.
For SEO writers
Bulk swap keywords, update brand mentions across content.
For students
Replace cited authors throughout an essay or update terminology.
For QA testers
Sanitise test data by replacing real names with placeholders.
About find and replace
Simple defaults, powerful regex when you need it.
How to find and replace text online
Paste your content into the input panel, type the term you want to find, and type its replacement. This online text replace tool updates the output panel live and shows a match count so you know exactly how many changes will be made before you commit them. When the preview looks right, apply the change in place or copy the result. There is no software to install and no account to create, so you can search and replace text online in a few seconds.
What is an online find and replace tool?
An online find and replace tool lets you replace text online directly in a browser instead of opening a code editor or word processor. You paste text into one panel, enter a find term and a replace term, and the tool rewrites every match for you. Because it runs as a web page, online search and replace works the same on any device and needs no setup. It is the quickest option when you just need to fix a snippet, a copied column, or content from an email.
Plain text vs regex
Plain text searches for the exact characters you type. Regex (regular expressions) interprets your search as a pattern. Use plain text for "Find Sarah, replace with Jordan." Use regex for "Find all email addresses, replace with [redacted]" (pattern: /\b\w+@\w+\.\w+\b/g). Most people only need plain text, so reach for regex only when you genuinely need pattern matching.
Common regex patterns
Email: \b[\w.-]+@[\w.-]+\.\w+\b. Phone (US): \b\d3-\d3-\d4\b. URL: https?:\/\/\S+. Numbers: \d+. Whitespace: \s+. Word boundary: \b. Capture group: (group). Use $1 in the replace box to reference captures.
Case sensitivity in detail
With case sensitive off (default), the regex i flag is automatically added. "Apple" matches "apple", "APPLE", and "ApPlE". With case sensitive on, only the exact casing matches. Important for code refactoring where "myVar" and "MyVar" are different identifiers.
Whole word matching
Without whole word matching, replacing "cat" in "category" would change it to "[replacement]egory". With whole word matching enabled, "cat" only matches the standalone word, never as part of a larger word. Equivalent to wrapping your search in \b...\b in regex mode.
Replace multiple text values in one pass
When you need to replace several different terms, work through them one find-replace pair at a time, applying each change to the output before starting the next. Because the result updates instantly and shows a match count, you can verify every substitution as you go. This makes it practical to replace multiple text values across a long document without opening a code editor or a word processor.
Find and replace in text pasted from Word
You do not need Microsoft Word to run a find and replace on a Word document. Copy the text out of your Word file and paste it into the input panel, then search and replace as normal. The replaced text can be copied straight back into Word. This is the quickest way to do a find and replace on Word content when you only need a fast browser tool rather than the full word processor.
Replace characters and clean up text
Find and replace is also a fast way to replace characters and tidy messy text. Swap straight quotes for curly quotes, replace tabs with spaces, change separators in a list, or delete an unwanted symbol by leaving the replace box empty. With regex mode you can target whole classes of characters at once, which makes this a flexible cleanup tool alongside dedicated whitespace and duplicate-line utilities.
Why an online tool beats a desktop editor
A desktop editor works well for files you already have open, but an online text replace tool is faster for quick, one-off edits. There is nothing to launch, it works on any device with a browser, and because the replacement runs entirely on your machine, your text is never uploaded. For pasted snippets, copied columns, or content from an email, finding and replacing online is usually the shortest path from messy text to clean output.
Find and replace word content online
You do not need Microsoft Word to run a find and replace on Word text. Copy the content out of your document, paste it into the input panel, and use this find and replace word online tool exactly as you would inside the app. The replaced text copies cleanly back into Word. This is the fastest route when you need a quick online search and replace and do not want to wait for a full word processor to open.
Replace characters online and normalize text
Find and replace is a practical way to replace characters online and standardize messy input. Swap straight quotes for curly quotes, change list separators, replace tabs with spaces, normalize inconsistent dashes, or delete a stray symbol by leaving the replace box empty. In regex mode you can target an entire class of characters in one pass, which turns this into a flexible cleanup step you can run before importing or publishing content.
Replace multiple text values across a document
When several different terms need updating, run them as separate find and replace pairs, applying each result before moving to the next. The live preview and match count let you confirm every substitution as you go, so nothing changes silently. This makes it realistic to replace multiple text values, such as renamed products, updated brand mentions, or swapped placeholders, across a long document without touching a code editor.
Find and replace for developers and data cleanup
Developers use online find and replace to refactor a snippet, rename a variable, or strip log noise without opening an IDE. Data teams use it to standardize CSV values, normalize date formats, or replace empty cells with a placeholder. Case-sensitive matching keeps identifiers like myVar and MyVar distinct, whole-word matching avoids accidental partial hits, and regex with capture groups handles structured patterns. For a one-off transformation, this is faster than writing a script.
Is this online search and replace tool free and private?
Yes. This find and replace online tool is completely free with no signup, no account, and no usage limits, so you can run online search and replace as often as you need. It is also fully private: the matching and replacement happen entirely client-side in your browser using its built-in JavaScript engine, and your text is never uploaded or logged. That makes it safe for confidential documents, code, and customer data.
How to find and replace
Four steps.
Paste your text
Drop your text into the input panel.
Enter find and replace
What to find and what to replace it with.
Choose options
Case sensitive, whole word, or regex mode.
Apply or copy
Replace in place or copy the output.
Frequently asked questions
If you don't find your question here, ask us directly.
Enter what you want to find in the search box, what you want to replace it with in the replace box. The tool finds every match in your text and shows the result live with the match count. Click "Apply" to replace all matches at once. Everything runs in your browser using JavaScript string methods or regex.
Yes. Toggle "Regex mode" and the search box accepts JavaScript regex syntax. For example, /\d+/g matches all numbers, /\b\w+@\w+\.\w+\b/g matches email addresses, /\s+/g matches all whitespace. Use capture groups in the replace box with $1, $2, etc. for backreferences.
Toggle "Case sensitive" to require exact case matching. "Apple" will only match "Apple", not "apple" or "APPLE". With case sensitive off (default), the regex flag i is added automatically so matches are case-insensitive.
Toggle "Whole word" to wrap your search term in word-boundary anchors. "cat" will match "cat" but not "category" or "concatenate". This is the same as using \bcat\b in regex mode.
Yes. Leave the replace box empty and click Apply. All matches will be deleted. Useful for removing specific words, HTML tags (regex: /<[^>]+>/g), or any unwanted patterns.
Plain text searches for the literal characters you type. "1+1" matches the string "1+1" exactly. Regex treats special characters as patterns. "1+1" in regex means "one or more 1s, followed by 1", which is different. Most users want plain text. Use regex only when you know you need patterns.
Yes. The output panel shows the replaced text live as you type the search and replace values. Nothing is committed until you click "Apply to input". Cancel by clearing the search box or clicking the original undo button.
Yes. Find and Replace runs entirely in your browser. Your text is never uploaded or logged. The regex engine is your browser's built-in V8/SpiderMonkey JavaScript engine, which is fully local.
Paste your text into the input panel on this page, type what to find and what to replace it with, then check the live preview and match count. When it looks right, apply the change or copy the output. The tool is completely free, needs no signup, and has no usage limits.
Yes. You do not need Microsoft Word installed. Copy the text out of your Word file, paste it into this online find and replace tool, run your search and replace, then copy the result back into Word. It is a quick way to find and replace in Word content without opening the full word processor.
Work through each find-replace pair one at a time, applying each change to the output before moving to the next. The result updates instantly with a match count, so you can verify every substitution as you go. This lets you replace multiple text values across a long document without a code editor.
Type the character you want to find and the character to replace it with, then apply the change. For example, you can swap tabs for spaces, change list separators, or replace straight quotes with curly quotes. Use regex mode to target a whole class of characters in one pass.
Yes. It runs in any modern web browser on desktop, laptop, tablet, or phone, with nothing to install. Because the replacement happens locally on your device, it works the same everywhere and keeps your text private.
Paste your text into the input panel, enter the term to find and the term to replace it with, and the output updates instantly. The match count shows how many changes online search and replace will make before you commit them. Apply the change in place or copy the cleaned result.
Yes. This tool lets you replace text online with no signup, no account, and no usage limits. Open the page, paste your text, and start replacing right away. Everything runs in your browser, so there is nothing to install and nothing to register.
Copy the text out of your Word document and paste it into the input panel, then run your find and replace as normal. When the preview looks right, copy the result and paste it back into Word. This find and replace word online approach works without opening Microsoft Word at all.
Yes. Enter the character you want to find and the character to replace it with, then apply the change. You can swap tabs for spaces, change separators, or normalize quotes and dashes. Regex mode lets you replace a whole class of characters online in a single pass.
Yes. It is a completely free online tool for find and replace text with no cost, no signup, and no limits. You can run as many find and replace operations as you need on documents of any length, and the tool stays free.
Related text tools
Other tools writers and developers use.
Try our other free tools
Word counter, character counter, case converter, and 47 more.