This creates a score to indicate how close one word matches another word.
sample:
Code:Dim word1 As String = "Hello world!" Dim word2 As String = "helloo world" Dim compare As New CompareWords(CompareWords.MatchTypes.Accurate) Console.WriteLine(compare.GetMatch(word1, word2)) Console.WriteLine(compare.GetMatch(word1, word2, 90))


Reply With Quote
