Identifies spelling mistakes and suggests replacements.
Install the nuget package to get started.
The usage is:
var spellChecker = new MSpell.SpellChecker();
var dictionary = new List {"moon","soon","mono","windows"};
spellChecker.Train(dictionary);
// To get all word in the dictionry within 1 edit distance
var suggestion = spellChecker.GetSuggestedWords("mon", 1);
// The output is sorted by editdistance, prefixmatch, wordlength in order The output should be mono,moon.
We use appveyor for versioning.
Musfiqur Rahman
See also the list of contributors who participated in this project.
This project is licensed under the MIT License - see the LICENSE.md file for details