gpt4 book ai didi

c# - 如何获得 2 个字符串数组之间的第一个匹配项

转载 作者:太空宇宙 更新时间:2023-11-03 19:16:08 25 4
gpt4 key购买 nike

我有 2 个字符串数组。一个是基础,一个是变化。

string[] baseArray = { "Gold", "Silver", "Bronze" };
string[] readArray = { "Bronze", "Silver", "Gold" };

// After comparing the readArray over the baseArray the result should be this
//string match = "Gold";

我想得到 baseArray 的第一个。

//Example2
string[] readArray = { "Bronze", "Silver" };
//string match should be "Silver"

最佳答案

如果您只想要一个结果,使用 LINQ:

string firstMatch = baseArray.FirstOrDefault(readArray.Contains);

如果您只想要一个结果,而不是使用 LINQ:

string firstMatch = null;
foreach(string element in baseArray)
{
if (Array.IndexOf(readArray, element) >= 0)
{
firstMatch = element;
break;
}
}

如果你想要所有匹配的元素,使用 LINQ:

string[] common = baseArray.Intersect(readArray).ToArray();

如果你想要所有匹配的元素,而不是使用 LINQ:

HasSet<string> common = new HashSet<string>(readArray);
result.Intersect(baseArray);

关于c# - 如何获得 2 个字符串数组之间的第一个匹配项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16530716/

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