正则表达式匹配 href 和text内容

string pattern = @"]*href=(""(?[^""]*)""|'(?[^']*)'|(?[^\s>]*))[^>]*>(?[\s\S]*?)";

MatchCollection mcs = Regex.Matches(contenhtml, pattern, RegexOptions.IgnoreCase | RegexOptions.Compiled);

href =mcs[0].Groups["href"].Value;

text=mcs[0].Groups["text"].Value;

转载于:https://www.cnblogs.com/Xujg/p/3637962.html

你可能感兴趣的:(python)