If you've ever had two lists — emails, URLs, SKUs, SQL query outputs, XML nodes, whatever — and needed to know what's different between them, you know the drill. You either:
Paste both into Excel and wrestle with VLOOKUP or MATCH formulas,
Write a quick Python/JS script just to diff two arrays,
Or manually eyeball two columns like it's 2005.
All of these work, but they're overkill for a task that should take 10 seconds.
The problem in real life
I run into this constantly:
Comparing two exports of user emails to find who's new or missing
Diffing two lists of URLs after a site migration to catch broken links
Checking two SQL query results for mismatched rows
Comparing XML/config files to spot what changed between versions
Excel formulas work but are fiddly and easy to get wrong (off-by-one references, case sensitivity, extra whitespace breaking the match). A script works but means opening an editor, writing boilerplate, and running it — for what is fundamentally a copy-paste-compare task.
The fast way: paste and compare
I've been using Compare2Lists — a free, no-signup web tool that does exactly one thing well: you paste List A on one side, List B on the other, hit compare, and it instantly shows you:
What's common to both lists
What's only in List A
What's only in List B
No installs, no scripts, no account. It handles large lists, ignores extra whitespace/case issues that usually trip up manual comparisons, and works for any plain-text list — emails, URLs, IDs, SQL output, you name it.
Why this beats the "just write a script" instinct
For a one-off comparison, spinning up a script costs more time than it saves. A browser-based tool like this is the right tool for the job when:
You need an answer right now, not after writing/debugging a script
You're not at your dev machine (works on any device with a browser)
You want to hand the task to someone non-technical on your team
Try it yourself
Next time you catch yourself opening Excel or a code editor just to diff two lists, try compare2lists.online instead — paste, compare, done.
Curious what tools/tricks other folks here use for quick list diffing — Excel formulas, diff, jq, something else? Drop it in the comments!
Top comments (0)