我有一个这样的列表,我希望能够在这个列表中搜索来自另一个字符串的子字符串。例子:
List<string> list = new List<string>();
string srch = "There";
list.Add("1234 - Hello");
list.Add("4234 - There");
list.Add("2342 - World");
我想"There"
在我的列表中搜索并返回"4234 - There"
。我试过了:
var mySearch = list.FindAll(S => s.substring(srch));
foreach(var temp in mySearch)
{
string result = temp;
}