UX Collective

We believe designers are thinkers as much as they are makers. https://linktr.ee/uxc

Follow publication

Search with typo tolerance

Tomek Niezurawski
UX Collective
Published in
6 min readJan 3, 2021

Hero image with “thypo torelance” as a misspelled form of “typo tolerance”

Examining the problem

Searching with %LIKE% queries
const FRUITS = [‘Apple’, ‘Banana’, ‘Blueberry’, ‘Cherries’ /* etc… */];function searchHandler(event) {
const searchText = event.target.value.toLowerCase();
const filteredFruits = FRUITS.filter((fruit) => {
return fruit.toLowerCase().includes(searchText); // HERE
});
// render the list of `filteredFruits`
}

Introducing a tolerance

Searching with typo tolerance
Searching for “pee”. Apple and Pear are on the list

The algorithm

Apple and Pear are quite close to “pee”
Illustration on how the distance is measured
Search results ordered by distance

Implementation

const FRUITS = ['Apple', 'Banana', 'Blueberry', 'Cherries' /* etc... */];
const MIN_DISTANCE = 3;
function searchHandler(event) {
const searchText = event.target.value.toLowerCase();
const filteredFruits = FRUITS.filter((fruit) => {
// HIGHLIGHT STARTS
const distance = levenshtein(fruit.toLowerCase(), searchText);
return distance <= MIN_DISTANCE;
// HIGHLIGHT ENDS
});
// render the list of `filteredFruits`
}
function levenshtein(a, b) {
// The Levenshtein's algorithm calculating the distance
}

Perfect tolerance (distance)

Hybrid approach

Is that a perfect method?

Bonus: Does Google do the same?

The UX Collective donates US$1 for each article published on our platform. This story contributed to Bay Area Black Designers: a professional development community for Black people who are digital designers and researchers in the San Francisco Bay Area. By joining together in community, members share inspiration, connection, peer mentorship, professional development, resources, feedback, support, and resilience. Silence against systemic racism is not an option. Build the design community you believe in.

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

Written by Tomek Niezurawski

I connect humans and machines. Usually write about interfaces, digital products, and UX on tomekdev.com. Founder of checknlearn.com. A bit nerdy 🤓

No responses yet

Write a response