我有字符串列表。如果列表包含该部分字符串,则找出该项的索引。请查看代码以获取更多信息。
List<string> s = new List<string>();
s.Add("abcdefg");
s.Add("hijklm");
s.Add("nopqrs");
s.Add("tuvwxyz");
if(s.Any( l => l.Contains("jkl") ))//check the partial string in the list
{
Console.Write("matched");
//here I want the index of the matched item.
//if we found the item I want to get the index of that item.
}
else
{
Console.Write("unmatched");
}
答案 0 :(得分:5)
您可以使用List.FindIndex
:
int index = s.FindIndex(str => str.Contains("jkl")); // 1
if(index >= 0)
{
// at least one match, index is the first match
}
答案 1 :(得分:0)
你可以用这个
var index = s.Select((item,idx)=> new {idx, item }).Where(x=>x.item.Contains("jkl")).FirstOrDefault(x=>(int?)x.idx);
修改强>
如果使用List<string>
,最好使用FindIndex
。
但在我的辩护中,使用FindIndex
并不是按照OP的要求使用LINQ; - )
修改2
应该使用FirstOrDefault
答案 2 :(得分:0)
这就是我在没有Linq时使用它的方法,并希望缩短它,所以发布了这个问题。
List<string> s = new List<string>();
s.Add("abcdefg");
s.Add("hijklm");
s.Add("nopqrs");
s.Add("tuvwxyz");
if(s.Any( l => l.Contains("tuv") ))
{
Console.Write("macthed");
int index= -1;
//here starts my code to find the index
foreach(string item in s)
{
if(item.IndexOf("tuv")>=0)
{
index = s.IndexOf(item);
break;
}
}
//here ends block of my code to find the index
Console.Write(s[index]);
}
else
Console.Write("unmacthed");
}