比较两个不同大小的字符串的相似性

时间:2018-07-06 13:13:51

标签: c# string compare

我有一个由代码产生的字符串,但可能不正确。 所以我有一个用户屏幕,用户可以检查并更改它。 我必须让用户最多更改5个字符。 我需要检查用户更改了多少个字符 比较两个字符串。 字符串的长度可能不同。

先谢谢您。 (语言C#)

1 个答案:

答案 0 :(得分:1)

您可以在两个字符串之间compute the Levenshtein Distance,返回从字符串A到字符串B所必须进行的字符编辑(删除,插入,替换)的次数。

public static class LevenshteinDistance
{
    /// <summary>
    /// Compute the distance between two strings.
    /// </summary>
    public static int Compute(string s, string t)
    {
        int n = s.Length;
        int m = t.Length;
        int[,] d = new int[n + 1, m + 1];

        // Step 1
        if (n == 0) return m;
        if (m == 0) return n;

        // Step 2
        for (int i = 0; i <= n; d[i, 0] = i++);   
        for (int j = 0; j <= m; d[0, j] = j++);

        // Step 3
        for (int i = 1; i <= n; i++)
        {
            //Step 4
            for (int j = 1; j <= m; j++)
            {
                // Step 5
                int cost = (t[j - 1] == s[i - 1]) ? 0 : 1;

                // Step 6
                d[i, j] = Math.Min(
                    Math.Min(d[i - 1, j] + 1, d[i, j - 1] + 1),
                    d[i - 1, j - 1] + cost);
            }
        }
        // Step 7
        return d[n, m];
    }
}

然后处理:

if (LevenshteinDistance.Compute(s1, s2) <= 5)
    // Valid
else
    // Invalid