有没有办法检查代码背后的拼写?
我只能找到如何在UI控件中使用它
<TextBox SpellCheck.IsEnabled="True" Height="20" Width="100"/>
我想要的是boolean CheckSpell(string word)
我甚至不需要建议的拼写。
这将用于确定文本文件中拼写正确的单词的百分比 具有真正低数字的文本文件可能不适合人类消费。
该应用程序具有SQL后端,因此可以选择在Englich字典中加载单词列表。
答案 0 :(得分:2)
要解决您的问题,您可以使用NHunspell库。
在这种情况下,您的检查方法非常简单,如下所示:
bool CheckSpell(string word)
{
using (Hunspell hunspell = new Hunspell("en_GB.aff", "en_GB.dic"))
{
return hunspell.Spell(word);
}
}
您可以在this site上找到词典。
您也可以使用SpellCheck
class:
bool CheckSpell(string word)
{
TextBox tb = new TextBox();
tb.Text = word;
tb.SpellCheck.IsEnabled = true;
int index = tb.GetNextSpellingErrorCharacterIndex(0, LogicalDirection.Forward);
if (index == -1)
return true;
else
return false;
}