CompareList
/ howToFindDifferences.nav.tutorials
Tutorial

How to Find Differences Between Two Lists

A practical guide to identifying what's different and what's the same between any two lists, using both exact and AI-powered methods.

Two Ways to Find Differences

Exact Matching

Free

Compares items character-by-character. Items match only if they are identical (with optional case-insensitive comparison). Fast and deterministic.

howToFindDifferences.methods.bestFor Emails, IDs, product codes, exact strings

AI Fuzzy Matching

1 Credit

Uses Levenshtein distance and token-based similarity to find near-matches. Catches typos, reordered words, and similar entries that exact matching misses.

howToFindDifferences.methods.bestFor Names ("John Smith" vs "Smith, John"), addresses, keywords with typos

Understanding the Results

howToFindDifferences.terms.0.name

Items present in List A but not found in List B.

howToFindDifferences.terms.1.name

Items present in List B but not found in List A.

howToFindDifferences.terms.2.name

Items present in both List A and List B.

howToFindDifferences.terms.3.name

All unique items from both lists combined.

howToFindDifferences.terms.4.name

Items in either list but not in both (Only in A + Only in B).

Practical Example

howToFindDifferences.example.listALabel

alice@gmail.com

bob@yahoo.com

charlie@hotmail.com

david@company.com

howToFindDifferences.example.listBLabel

bob@yahoo.com

charlie@hotmail.com

emma@outlook.com

frank@gmail.com

howToFindDifferences.example.onlyInA.title

alice@gmail.com, david@company.com

howToFindDifferences.example.onlyInA.note

howToFindDifferences.example.onlyInB.title

emma@outlook.com, frank@gmail.com

howToFindDifferences.example.onlyInB.note

howToFindDifferences.example.inBoth.title

bob@yahoo.com, charlie@hotmail.com

howToFindDifferences.example.inBoth.note

Find Differences Now

Paste your lists and get instant results — free and private.

Start Comparing