我有一个字符串列表。我想获取与其他列表匹配的列表项。即,如果 First List 值包含来自其他字符串的值,则返回所有值。
List<string> fileNameToMatch = new List<string> { "nsevar", "cat", "elm", "nse isin", "l6scripsv2eq" };
List<string> fileToMatch = new List<string> { "fevnsevarc", "gfcatgf","ratstts","mymatch"};
第二个列表包含第一个列表中存在的值。所以返回所有值。
输出应该是列表中的“fevnsevarc”和“gfcatgf”。
我们可以使用一些链接从 fileToMatch 中获取名称,其中包含来自 fileNameToMatch 的数据