C#遍历正则匹配到的多个结果的代码

直接上代码:

Regex regex = new Regex(strPattern, RegexOptions.IgnoreCase | RegexOptions.Multiline);
    if (regex.IsMatch(htmlContent))
    {
        MatchCollection matchCollection = regex.Matches(htmlContent);
        foreach (Match match in matchCollection)
        {
        }
    }
原文地址:https://www.cnblogs.com/x00479/p/14147682.html