PSpell 拼写检查不区分大小写?
我想在我的程序中使用 PHP 的 PSpell 检查功能。 pspell_check() 中是否有一个选项可以进行不区分大小写的检查?
I'd like to use PHP's PSpell check function in my program. Is there an option somewhere for case-insensitive checking in pspell_check()
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我找到了一种解决缺乏区分大小写选项的方法。 PSpell 的建议函数似乎总是返回大写错误的单词的正确大写作为其第一个建议,因此如果初始拼写检查失败,我们可以检查这一点:
适用于 PHP 5.3.2。快乐编码:)
I've found a way around the lack of an option for case insensitivity. PSpell's suggestion function seems to always return the correct capitalization of a mis-capitalized word as its first suggestion, so we can check for this if the initial spell check fails:
Works on PHP 5.3.2. Happy coding :)
尝试此补丁http://code.google.com/p/patched-pspell/ .它使您能够设置任何选项。
Try this patch http://code.google.com/p/patched-pspell/ . It enables you to set any options.
有一个简单的解决方案。只需这样做:
There is an easy solution. Just do this: