匹配得到A标签href的内容

<a[\\s\\S]*?href[\\s]*=[\\s]*[\"|']([\\s\\S]*?)[\"|']
string strRegex = "<a[\\s\\S]*?href[\\s]*=[\\s]*[\"|']([\\s\\S]*?)[\"|']";
// 得到一个href值
Regex r;
MatchCollection m;
r = new Regex("<a[\\s\\S]*?href[\\s]*=[\\s]*[\"|']([\\s\\S]*?)[\"|']", RegexOptions.IgnoreCase); 
m = r.Matches(strSource);
if (m.Count <= 0) return "";
     return m[0].Groups[i_flag].Value;
// 匹配得到一个href值
List<string> lst_value = new List<string>();
int flag = 0;
Regex r;
MatchCollection m;
r = new Regex(strRegex, RegexOptions.IgnoreCase);
m = r.Matches(strSource);
foreach (Match match in m) 
 {
            lst_value.Add(match.Groups[flag].Value);
 }


你可能感兴趣的:(匹配得到A标签href的内容)