正则表达式提取匹配href中的链接,只提取asp|aspx|html|php|jsp|shtml并且连接中可以带有任意个参数

2024-11-24 02:14:07
推荐回答(2个)
回答1:

回答2:

Regex reg = new Regex("[ \\s]*href=(\"|')(.*?)(\"|')");
MatchCollection m = reg.Matches(html);
foreach (Match mc in m)

在遍历的时候对比一下就可以了