Fuzzy List Matcher
Reconciling a CRM export against a spreadsheet of invoice customers, or matching vendor names from two different ERPs, almost always breaks on small differences, “Acme Corp.” vs “ACME Corporation” vs “acme corp”. Paste both lists, set a similarity threshold and the tool suggests the best candidate in list B for every entry in list A, flagging the ones below threshold for manual review.
How to match two messy lists
-
1
Paste list A
One entry per line: customer names, product codes, street addresses.
-
2
Paste list B
The candidate pool. Differences in case, spacing and typos are OK.
-
3
Set a threshold
Similarity percentage above which a match is accepted (70% is a sensible default).
-
4
Read the report
Each A item is paired with the best B candidate and a confidence score. Items under threshold are marked for review.
How similarity is measured
The tool uses PHP’s similar_text (a longest-common-subsequence score) and reports the result as a percentage. Higher is better; an exact match is 100%.
| Threshold | Behaviour |
|---|---|
| ≥ 95% | Near-identical, only differences in case or spaces |
| 80–94% | Typos, missing punctuation, truncated suffixes |
| 60–79% | Word order changes, abbreviations vs full forms |
| < 60% | Likely not a real match, review manually |
Tips
- Normalise first if you know the common noise: lowercase, strip punctuation, collapse whitespace. You will get tighter scores.
- Strip company suffixes (“Inc”, “Ltd”, “GmbH”) if they appear inconsistently in one list but not the other.
- Split long addresses, matching “street + city” separately beats matching one concatenated line.
- Watch for one-to-many. The tool picks the best B match per A entry; it does not prevent the same B from matching multiple A rows.
When to use a stricter algorithm
For large deduplication work, Levenshtein distance or Jaro–Winkler outperform similar_text, especially on names where character position matters. If fuzzy matching drives billing or merges, spot-check 20 random pairs before trusting the output at scale.
Frequently Asked Questions
70% catches most legitimate matches while flagging real misses. Tighten to 85% if list B is clean and you cannot afford false positives; loosen to 55% if both lists are noisy and you plan to review everything manually.
Yes, but normalise first, strip spaces, dashes and country-code prefixes, lowercase emails. Fuzzy matching on raw values will report low scores for structurally identical entries.
Internally the tool lowercases both sides before comparing, so “Apple” and “apple” score 100%.
Yes, matching runs server-side, so your two lists are sent to the tool to be compared. They are processed in memory for that single request and are not stored or logged afterwards.
Related Tools
ASCII Table Reference
Full ASCII table from 0 to 127 with decimal, hex, octal, binary, standard names and HTML numeric-reference notation, including NUL, LF and DEL.
Color Palette Generator
Generate monochromatic, analogous, complementary, triadic or tetradic color palettes from a base HEX color and export copy-ready CSS variables.
HEX Color Picker
Pick or enter a HEX colour and get RGB, HSL, approximate CMYK, relative luminance and contrast ratios against white and black.
HTML Character Reference
Searchable list of HTML entities, their named and numeric codes, and a one-click copy for special characters and symbols.
FPS Counter
Measure browser FPS with requestAnimationFrame, smoothing, min/max frame rate, warnings and an optional graph. Runs locally with no upload or API.
JSON Formatter
Paste JSON to pretty-print with 2 or 4 spaces, minify it to compact output, or run a quick syntax check before copying the result.
Tool available in other languages
- Correspondência de Lista Difusa [PT]
- Bộ so khớp danh sách mờ [VI]
- ファジーリストマッチャー [JA]
- مطابق القوائم الضبابية [AR]
- Comparador de Listas Difusas [ES]
- 퍼지 목록 매처 [KO]
- Correspondance de listes floues [FR]
- Luddig listmatchare [SV]
- Fuzzy-Listenabgleich [DE]
- เครื่องจับคู่รายการแบบฟัซซี่ (Fuzzy List Matcher) [TH]
- Pembanding Daftar Fuzzy [ID]
- Fuzzy lijstmatcher [NL]
- Rozmyte dopasowywanie list [PL]
- Corrispondente di Liste Fuzzy [IT]
- Метод сопоставления нечётких списков [RU]
- Bulanık Liste Eşleştirici [TR]
- 模糊列表匹配器 [ZH]