阿拉伯语拼写检查 API
我从谷歌搜索了有关拼写检查器 API 的信息,但那里不支持阿拉伯语,如果有人可以帮助我找到支持阿拉伯语的 AP 或任何其他好主意。
I searched about spell checker API from google but the arabic language is not supported there if any one can help me to find the AP that support arabic language or any other good idea.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
据我所知,Google 的拼写检查 API 均未记录/受支持,因此它们随时可能会崩溃。
可以使用 Google 翻译 api 进行拼写检查:
http://translate.google.com/translate_a/t?client=t&text=كиف ك&sc=1
返回:
滚动到正确,您将在最后看到更正后的结果
كفف ك
。sc=1
参数在结果中包含拼写检查。您必须弄清楚如何解析 JSON 结果以获得正确的拼写,AFAIK none of Google's spell check APIs are documented/supported, and as such they could break at any time.
It is possible to spell check using the Google translate api:
http://translate.google.com/translate_a/t?client=t&text=كيف حاك&sc=1
Returns:
Scroll to the right and you'll see the corrected results
كيف حالك
at the end.The
sc=1
parameter includes the spell check in the results. You'll have to figure out how to parse the JSON results to get the corrected spelling,您可以尝试这个:
https://github.com/Arabic-Spell-Checker/spellchecker-api-client
它有一个 REST API 并提供字典管理功能。
免责声明:我是这个的开发者。
You could try this one:
https://github.com/Arabic-Spell-Checker/spellchecker-api-client
It has a REST API and provides dictionary management functionalities.
Disclaimer: I am the developer of this.