UtilToolkits2025-12-20
TL;DR — The Duplicate Remover dedupes any line-based list — emails, URLs, IDs, CSV rows — with case-insensitive and whitespace-tolerant matching. Clean stray whitespace first with the Text Cleaner; randomize the final list with the List Randomizer.
alice@example.com = Alice@example.com (case-insensitive toggle). bob@example.com = bob@example.com (trim whitespace toggle).By default, first occurrence wins and order is preserved. Toggle sort if you want alphabetical output.
The Duplicate Remover works line-by-line. For column-level dedup, paste only that column, dedupe, then use the result as a filter set against the original CSV in a spreadsheet.
Exact-match dedupe won’t catch those. Pre-process with text rules (strip +... suffix from emails) using the Text Cleaner or a quick regex, then dedupe.
Practical: millions of lines in modern browsers. Runs in O(n) with a hash set.