gpt4 book ai didi

c# - 使用正则表达式比较两个字符串

转载 作者:太空狗 更新时间:2023-10-29 21:54:28 26 4
gpt4 key购买 nike

我正在为这样的匹配程序使用两个字符串:

string s1= 5-4-6-+1-+1+1+3000+12+21-+1-+1-+1-+2-3-4-5-+1-+10+1-+1-+;
string s2= 6-+1-+1+1+3000+12+21-+1-+1-+1-+1-+1-+1+1-+1-+;

我将编写一个 Regex 匹配函数,分别比较每个“+”之间的每个部分字符串并计算匹配百分比,即每个字符串中出现的匹配数。例如,在此示例中,我们有这些匹配项:

6

1

1

1

3000

12

21

1

1

1

--

1

--

1

1

在此示例中,匹配百分比为 13*100/15=87%。

目前我正在使用下面的函数,但我认为它没有经过优化,使用 Regex 可能会更快。

public double MatchPercent(string s1, string s2) {
int percent=0;
User = s1.Split('+').ToArray();
Policy = s2.Split('+').ToArray();

for (int i = 0; i < s1.Length - 2; i++) {
int[] U = User[i].Split('-').Where(a => a != "").Select(n =>
Convert.ToInt32(n)).Distinct().ToArray();
int[] P = Policy[i].Split('-').Where(a => a != "").Select(n =>
Convert.ToInt32(n)).Distinct().ToArray();
var Co = U.Intersect(P);
if (Co.Count() > 0) {
percent += 1;
}
}
return Math.Round((percent) * 100 / s1.Length );
}

最佳答案

更好的解决方案是 Levenshtein Word Distance 算法。一些 C# 示例:

根据匹配的字符,您还可以计算百分比。

关于c# - 使用正则表达式比较两个字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16997720/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com