How Does It Work?
- Paste your listOne item per line. Emails, URLs, product codes, names — anything.
- Choose how strict to beTrimming spaces and ignoring case catch near-duplicates that look identical to a human but differ byte for byte.
- Copy the clean listThe first occurrence of each line is kept and the original order is preserved.
What Is It Used For?
Merged exports, copied spreadsheets and combined mailing lists nearly always carry duplicates, and the differences are often invisible — a trailing space, a capital letter. Deduplicating in the browser avoids uploading a list of customer emails to an unknown website just to clean it.
- Cleaning a mailing list built from several sources.
- Removing repeated rows from a pasted export before importing it.
- Tidying a list of URLs, keywords or tags.
- Finding out which entries actually repeat, using the duplicates-only mode.
- Producing a unique set of IDs or codes for a script.
Examples
| Input | Options | Result |
|---|---|---|
| apple, banana, apple | Default | apple, banana |
| Apple, apple | Default | Apple, apple (both kept) |
| Apple, apple | Ignore case | Apple |
| " apple", "apple" | Trim spaces | apple |
| apple, banana, apple | Show duplicates instead | apple |