当您使用正则表达式搜索某些内容时,我正在尝试获取 Google 在首页上生成的 10 个网站的链接。我对正则表达式很陌生,并且在让它工作时遇到了很多麻烦:
MatchCollection links = Regex.Matches(indexPage, @"<h3 class=""r""><a href=""\s*(.+?)\s*"" class=l", RegexOptions.Multiline);
一旦我在集合中获得链接,我将它们添加到此处的列表中:
foreach (Match link in links) {
string result = link.Groups[1].Value;
results.Add(result);
}
它没有找到任何链接,任何帮助将非常感谢