Click here to Skip to main content
15,892,537 members
Articles / Desktop Programming / Windows Forms

i00 Spell Check and Control Extensions - No Third Party Components Required!

Rate me:
Please Sign up or sign in to vote.
4.95/5 (117 votes)
11 Jan 2014Ms-PL16 min read 1.3M   22   266  
Simple to use, open source Spell Checker for .NET
Partial Class FlatFileDictionary
    Implements Dictionary.Interfaces.iAnagram

    Public Function AnagramLookup(ByVal Letters As String) As List(Of String) Implements Dictionary.Interfaces.iAnagram.AnagramLookup
        AnagramLookup = New List(Of String)

        Letters = Letters.ToLower

        Dim Dict() As String = (From xItem In IndexedDictionary.GetFullList Select xItem.ToLower).ToArray 'fill dict here

        Dim WordsWithMatchingChars = (From xItem In Dict Where xItem.Length = Letters.Length Select New With {.Word = xItem, .LetterCount = (From xItemWordMatch In xItem Where Letters.Contains(xItemWordMatch)).Count}).ToArray

        Dim MatchingLenthWords = (From xItem In WordsWithMatchingChars Where xItem.LetterCount = Letters.Count Select xItem.Word).ToArray

        'final check to check each char occurs only for each char:
        For Each iMatchedWord In MatchingLenthWords
            Dim CheckLetters = Letters
            For Each iMatchedWordLetter In iMatchedWord
                'find and remove the letter from check
                Dim index = CheckLetters.IndexOf(iMatchedWordLetter)
                If index <> -1 Then
                    CheckLetters = CheckLetters.Remove(index, 1)
                End If
            Next
            If CheckLetters.Count = 0 Then
                'all matched
                AnagramLookup.Add(iMatchedWord)
            End If
        Next
    End Function
End Class

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Microsoft Public License (Ms-PL)


Written By
i00
Software Developer (Senior) i00 Productions
Australia Australia
I hope you enjoy my code. It's yours to use for free, but if you do wish to say thank you then a donation is always appreciated.
You can donate here.

Comments and Discussions