http://www.perlmonks.org?node_id=804260


in reply to Re: Search for similar strings - to standardise
in thread Search for similar strings - to standardise

Edit distance would be useful for comparison, but not so much for clustering strings with their common misspellings. For that, you might try n-grams (mentioned above) or locality-sensitive hashing (basically the same thing, but with gaps).
  • Comment on Re^2: Search for similar strings - to standardise