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

Posted

tags:

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

This allows you to get contents of any div with ID tag.
$matches[0] returns with parent div tag
$matches[1] returns with out parent div tag
  1. preg_match('/<div id=["]{0,1}ad_content["]{0,1}>(.*?)</div>/s', $content['content_body'], $matches);
  2. $content['content_body'] = $matches[1];

以上是关于获取div[id]内容的正则表达式的主要内容,如果未能解决你的问题,请参考以下文章

正则表达式,替换 指定范围内 的 特定字符串

求一条c# 正则表达式,来获取HTML标签的内容

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

正则表达式的括号与贪婪匹配

删除 Div 标签的正则表达式 [重复]

php正则问题如何取文本中间内容?