Beispiel #1
0
        public bool ShouldCompareStringsPos(string s1, string s2, int level)
        {
            Levenstein algo = new Levenstein(level);

            return(algo.IsTheSame(s1, s2));
        }