algorithmlanguage-agnosticspell-checkingsearch-suggestion

Detecting misspelled words


I have a list of airport names and my users have the possibility to enter one airport name to select it for futher processing.

How would you handle misspelled names and present a list of suggestions?


Solution

  • Look up Levenshtein distances to match a correct name against a given user input.