Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在寻找一种适用于西欧语言的模糊搜索实现。
哪种算法效果最好,我在哪里可以找到 C# 中的实现?
更新
Soundex 适用于瑞典语:
NYSSIS 实施:
莱文斯坦:
令人印象深刻的 Java 库:
但是我仍然不知道哪个更适合西欧语言
Soundex 是一种用于匹配发音相似的单词的众所周知的算法。在 Google 中搜索“soundex c#”,以获取无穷无尽的合适实现和解释列表。
如果您选择的代码中未包含该内容,您可能必须将 å,ä,ö 映射到 a,a,o。
我选择了 NYSSIS。