日期:2014-05-17 浏览次数:20802 次
string html = @"fdasf<a href=""http://www.baidu.com"" title=""百度"">";
if (System.Text.RegularExpressions.Regex.IsMatch(html, @"<a[^>]*?>"))
{
//匹配a标签
Match m = System.Text.RegularExpressions.Regex.Match(html, @"<a[^>]*?>");
//再根据匹配到得a标签去匹配href
string result = System.Text.RegularExpressions.Regex.Match(m.Value, @"<a[^>]*?href=""(?<Group2>[^""]*?)""[^>]*?>").Groups["Group2"].Value;
Console.WriteLine(result);
}