how to recognize similar words with difference in spelling

前端 未结 8 1878
逝去的感伤
逝去的感伤 2020-12-02 02:05

I want to filter out duplicate customer names from a database. A single customer may have more than one entry to the system with the same name but with little difference in

8条回答
  •  伪装坚强ぢ
    2020-12-02 02:32

    I would consider writing something such as the "famous" python spell checker.

    http://norvig.com/spell-correct.html

    This will take a word and find all possible alternatives based on missing letters, adding letters, swapping letters, etc.

提交回复
热议问题