MinifyPic

Find and Replace

Swap every occurrence of a word or phrase across a whole document at once — with case-sensitivity and whole-word matching when you need precision.

FreeCase optionsInstant
Loading tool…

How it works

A compact workflow from input to download.

1

Paste your text

Paste the document, list or block of text you want to edit.

2

Set find and replace

Enter the text to search for and what it should become. Turn on case-sensitivity or whole-word matching if you need them.

3

Copy the result

Every match is replaced at once. Copy the updated text out when you are happy with it.

Frequently asked questions

What does whole-word matching do?
It stops a search from matching inside other words. Searching for 'cat' without it will also change the 'cat' inside 'category', 'concatenate' and 'catalogue' — usually a disaster. With whole-word matching on, only the standalone word 'cat' is replaced.
Is the search case-sensitive?
Only if you switch that on. By default 'Apple' matches 'apple', 'APPLE' and 'Apple' alike. Enable case-sensitivity when capitalisation is meaningful — replacing a variable name in code, for instance, where 'userId' and 'UserID' are genuinely different things.
Can I delete a word entirely?
Yes. Leave the replacement field empty and every match is removed rather than substituted, which is the quickest way to strip a recurring word or phrase out of a document.
Is my text sent to a server?
No. Every transformation runs in JavaScript inside your own browser tab. Your text is never uploaded, logged or stored, and it disappears the moment you close the page — so it is safe to paste in things you would not want to hand to a stranger's server.

The classic find-and-replace disaster

Every experienced editor has a story, and they all have the same shape. Someone replaces 'man' with 'person' across a document and ends up with 'personagement', 'huperson resources' and 'romanticperson'. Someone changes a company name from 'Sun' to 'Solar' and turns 'Sunday' into 'Solarday' throughout. Someone swaps 'US' for 'United States' and finds every instance of 'thus' has become 'thUnited States'. The mechanism is always the same: a naive substring match happily replaces text inside other words, because the computer has no idea what a word is unless you tell it. Whole-word matching exists precisely to prevent this, and it is the single most valuable setting on this tool. When your search term is short or is a common fragment of longer words, switch it on before you do anything else.

Read before you replace

A bulk replacement is fast, silent and total, which is exactly what makes it dangerous — it will do the wrong thing thousands of times as cheerfully as it does the right thing once. A few habits make it safe. Keep a copy of the original text somewhere before you start, so a bad replacement is an inconvenience rather than a catastrophe. Think about whether your search term could appear inside a longer word, and enable whole-word matching if it could. Consider whether capitalisation matters, and turn on case-sensitivity if it does. And always read a sample of the output rather than trusting it blind — the errors this tool produces are usually glaring the moment you actually look at the result, and invisible if you do not.