大家好,我有 2 个 MatchCollection:
MatchCollection users_ids = Regex.Matches(result, @"url"":""(.*?)""");
MatchCollection users_names = Regex.Matches(result, @"fullname"":""(.*?)""");
2 个集合的数学数相等
我需要将所有匹配项加入 1 个列表。像这样:
foreach (Match match in users_ids)
{
string id = match.Groups[1].Value.ToString();
// string name = users_names(every match) .Groups[1].Value.ToString();
online_list.Add(id + "|" + name);
}
有什么解决办法吗?=\