Paste a list, and get it back with the repeats taken out.
Paste some text to get started.
Repeated lines creep into a list almost every time it has been through more than one pair of hands. Exports get merged, spreadsheets get pasted together, and suddenly the same entry is in there four times.
It shows up everywhere:
Removing duplicates can mean two quite different things, so you get to pick which one you meant:
The counter under the result tells you how many lines went in, how many came out, and how many were removed.
It takes about ten seconds:
Everything runs in your browser, so nothing is uploaded anywhere. If your list needs tidying first, clean up the whitespace or sort it alphabetically.
Yes. Lines are returned in the order they were pasted in, with the later copies taken out. Nothing is sorted or moved around.
Removing duplicates leaves one copy of every line. Keeping only unique lines throws away every line that was repeated, first copy included, which is what you want when a repeat means something went wrong.
Yes. The third mode returns only the lines that appeared more than once, which is the quick way to find out what is being double counted.
Only if you tick the option. With it off, Apple and apple are two different lines, which matters for things like case-sensitive identifiers.
Not unless you ignore the spaces around a line, which is on by default. It is the usual reason duplicates appear to survive a first pass.
Almost always an invisible difference: a non-breaking space from a web page, a curly quote against a straight one, or a stray tab. Whitespace Cleanup first will catch most of it.