hunspell 拼写检查

发布于 2024-08-17 02:45:49 字数 134 浏览 3 评论 0原文

我有一个具体的问题,需要重新排序 hunspell 因拼写错误而返回的建议单词。这些单词似乎按字母顺序返回。我想按相关性对建议进行排序,即最接近的匹配应该首先显示。 我找不到任何方法可以通过 hunspell api 来做到这一点。如何才能实现这一目标?

I had a specific question regrading ordering the suggested words returned by hunspell on a typo. The words seems to be returned in an alpha order. I want to order the suggestions by relevance, that is the closest match should show up first.
I couldn't find any way to do that via hunspell apis. How can this be achieved?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

捎一片雪花 2024-08-24 02:45:49

您不会将结果放入排序列表或类似的东西中,是吗?

当我调用 int iCount = pHunspell->suggest(aSuggestions, "Testig") 时,我得到“Testing,Testis,Testes”。如果按字母顺序排列,“睾丸”将排在第一位,这当然不是我的意图。

在非托管 C++ 版本 1.2.2 和 1.3.2 中进行了测试。

You're not putting the results into a sorted list or anything like that, are you?

When I call int iCount = pHunspell->suggest(aSuggestions, "Testig") I get "Testing, Testis, Testes". If it was in alphabetical order, "Testes" would have been first, which is certainly not what I had intended.

Tested in unmanaged C++ with versions 1.2.2 and 1.3.2.

薄荷→糖丶微凉 2024-08-24 02:45:49

我同意上面的观点。 Hunspell 利用某些概率模型(例如键盘字符近似度和语音相似度)来建议最佳匹配。您必须将其存储在已排序的列表中。

I agree with above. Hunspell makes use of certain probability models like keyboard character proximities and phonetic similarities to suggest best matches. You must be storing it in a list which gets sorted.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文