简体   繁体   English

在C#中转换Java代码

[英]convert java code in c#

I am using this code for sentence similarties the code is available on java i want to use this in c#. 我正在使用此代码来实现句子相似性,该代码在Java上可用,我想在C#中使用它。

public static int getWordChanges(String s1, String s2) {
        int similarityThreshold = 50;
        int wordChanges = 0;

        s1 = s1.toLowerCase().replace(".", "").replace(",", "").replace(";", "");
        s2 = s2.toLowerCase().replace(".", "").replace(",", "").replace(";", "");

        //Loop through each word in s1
        for (int i = 0; i < s1.split(" ").length; i++) {
            boolean exists = false;
            //Search for i'th word in s1 in s2
            for (int j = 0; j < s2.split(" ").length; j++) {
                //Is the word misspelled?
                if ((getLevenshteinDistance(s1.split(" ")[i], s2.split(" ")[j]) * 100 / s1.split(" ")[i].length()) < similarityThreshold) {
                    exists = true;
                    break;
                }
            }

            //If the word does not exist, increment wordChanges
            if (!exists) {
                wordChanges++;
            }
        }

        return wordChanges;
    }

This is Java code i want to execute this code in c# After convert the code in c# 这是我要在c#中执行此代码的Java代码

       public  int getWordChanges(String s1, String s2)
        {
            int similarityThreshold = 50;
            int wordChanges = 0;

            s1 = s1.ToLower().Replace(".", "").Replace(",", "").Replace(";", "");
            s2 = s2.ToLower().Replace(".", "").Replace(",", "").Replace(";", "");

            //Loop through each word in s1

            for (int i = 0; i < s1.Split(' ').Length; i++)
            {
                bool exists = false;
                //Search for i'th word in s1 in s2
                for (int j = 0; j < s2.Split(' ').Length; j++)
                {
                    //Is the word misspelled?
                    if ((getLevenshteinDistance(s1.Split(' ')[i], s2.Split(' ')[j]) * 100 / s1.Split(' ')[i].Length()) < similarityThreshold)
                    {
                        exists = true;
                        break;
                    }
                }

                //If the word does not exist, increment wordChanges
                if (!exists)
                {
                    wordChanges++;
                }
            }

            return wordChanges;
        }
    }
}

There are error at this line 这行有错误

if ((getLevenshteinDistance(s1.Split(' ')[i], s2.Split(' ')[j]) * 100 / s1.Split(' ')[i].Length()) < similarityThreshold)

on length error will show how i resolve this one 关于长度的错误将显示我如何解决这一问题

Add this function to your project 将此功能添加到您的项目中

public static int getLevenshteinDistance(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];
        }

Source 资源

And change .Length() to .Length Because String.Length is a property and not a method 并将.Length .Length() to .Length更改.Length() to .Length .Length .Length() to .Length因为String.Length是属性而不是方法

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM