gpt4 book ai didi

c++ - Hunspell:有什么具体的例子吗?

转载 作者:行者123 更新时间:2023-11-30 04:31:12 24 4
gpt4 key购买 nike

我已经很好地下载并编译了hunspell。现在我想在 wxWidgets 上制作一个测试应用程序,我开始寻找示例或教程。到目前为止我还没有找到。我可以找到“示例”可执行文件但没有代码(可能隐藏在某个地方还没有找到?)。在整个互联网上三天,我一无所获。我找到的最好的is this这是我听不懂的语言。

我会感激任何简单的例子、教程的指针或任何有值(value)的东西。非常感谢!

最佳答案

如果有人仍然需要一个可靠的例子,至少在 ubuntu 上,包 libhunspell-dev/usr/share/doc/libhunspell-dev/examples/example.cxx 中提供了一个

该文件也可以在线找到,例如:https://www.apt-browse.org/browse/ubuntu/precise/main/i386/libmythes-dev/2:1.2.2-1/file/usr/share/doc/libmythes-dev/examples/example.cxx

基于此,我为 C++ 创建了一个非常小的示例:

#include <iostream>
#include <string>
#include <hunspell/hunspell.hxx>

int main()
{
Hunspell spell ("/usr/share/hunspell/en_US.aff", "/usr/share/hunspell/en_US.dic");

std::cout << "Please enter one word:" << std::endl;
std::string word;
std::cin >> word;

if (spell.spell(word.c_str()) == 0) {
std::cout << "Spelling Error!";
} else {
std::cout << "Correct Spelling!";
}

return 0;
}

关于c++ - Hunspell:有什么具体的例子吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8326911/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com