正则获取 某段 DIV 中 的内容

Posted 刘小吉

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了正则获取 某段 DIV 中 的内容相关的知识,希望对你有一定的参考价值。

string html = "<div class=‘aa‘><div class=‘left‘>324324<div>dsfsdf</div><h1>aa</h1></div></div>";
            // 获取第一个 相呼应的标记
            //Regex reg = new Regex(@"<div class=‘left‘>([\s\S]+?)<\/div>");
            // 获取前后对应的标记
            Regex reg = new Regex(@"(?is)<div class=‘left‘[^>]*>(?><div[^>]*>(?<o>)|</div>(?<-o>)|(?:(?!</?div\b).)*)*(?(o)(?!))</div>");
            // 获取第一条
            Match first = reg.Match(html);
            // 获取匹配到的所有集合
            MatchCollection list = reg.Matches(html);
            foreach (Match item in list)
            {
                string value = item.Value;
            }

以上是关于正则获取 某段 DIV 中 的内容的主要内容,如果未能解决你的问题,请参考以下文章

PHP 正则表达式获取div [id]的内容

获取div[id]内容的正则表达式

PHP正则抓取字符串内某段字符

获取后台富文本框内容,截取图片

使用正则表达式在多个 HTML 标记之间获取文本 [重复]

正则表达式 - 从 PHP 中的 html 字符串获取表格