Skip to content

Musfiqur01/MSpell

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build status

MSpell

Identifies spelling mistakes and suggests replacements.

Getting Started

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.

Versioning

We use appveyor for versioning.

Authors

Musfiqur Rahman

See also the list of contributors who participated in this project.

License

This project is licensed under the MIT License - see the LICENSE.md file for details

About

A native .net core spellchecker.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages