2013-03-06 4 views
5

C# NHunspell을 사용하여 단어의 철자가 올바른지, 올바른 철자가 아닌지 어떻게 확인합니까?C# NHunspell을 사용하여 어떻게 단어를 확인합니까?

NHunspell.dll을 프로젝트로 가져 왔습니다. 그리고 the documentation을 보았습니다.

그러나 설명서를 읽을 때 조금 새로운 것이므로 어디에서 시작해야하는지 알기가 어렵습니다. 누군가가 단어의 철자가 올바른지 확인하는 방법에 대한 예를 제공 할 수 있습니까? 기본적으로 나는 NHunspell을위한 Helloworld가 필요합니다. 기사에서

+1

http://www.codeproject.com/Articles/33658/NHunspell-Hunspell-for-the-NET-platform 또한 –

+1

, 단위 테스트를 탐색 : HTTP ://nhunspell.svn.sourceforge.net/viewvc/nhunspell/trunk/UnitTests/UnitTestsHunspell.cs?revision=81&view=markup –

+0

구현하기가 더 쉽기 때문에 NetSpell을 실제로 사용하게되었습니다. 그래도 감사합니다! – rotaercz

답변

8
using (Hunspell hunspell = new Hunspell("en_us.aff", "en_us.dic")) 
{ 
    Console.WriteLine("Hunspell - Spell Checking Functions"); 
    Console.WriteLine("¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯"); 

    Console.WriteLine("Check if the word 'Recommendation' is spelled correct"); 
    bool correct = hunspell.Spell("Recommendation"); 
    Console.WriteLine("Recommendation is spelled " + 
     (correct ? "correct":"not correct")); 

    Console.WriteLine(""); 
    Console.WriteLine("Make suggestions for the word 'Recommendatio'"); 
    List<string> suggestions = hunspell.Suggest("Recommendatio"); 
    Console.WriteLine("There are " + 
     suggestions.Count.ToString() + " suggestions"); 
    foreach (string suggestion in suggestions) 
    { 
     Console.WriteLine("Suggestion is: " + suggestion); 
    } 
} 

http://www.codeproject.com/Articles/43495/Spell-Check-Hyphenation-and-Thesaurus-for-NET-with

+0

우리는 어떻게 모든 단어를 얻을 수 있습니까? 나는 dic 파일의 각 라인을 스캔하고 그 라인에서 생성 될 수있는 모든 조합을 얻는다는 뜻입니다. 내가 어떻게 할 수 있니? 타이 – MonsterMMORPG

+0

https://www.codeproject.com/Articles/43495/Spell-Check-Hyphenation-and-Thesaurus-for-NET-with?msg=5368357#xx5368357xx – MonsterMMORPG