正则表达式php:在div中找到所有内容

我正在尝试使用 regexp在div中找到eveything.我知道可能有一种更聪明的方法 – 但我选择了regexp.

所以目前我的正则表达式模式如下:

$gallery_pattern = '/<div class="gallery">([\s\S]*)<\/div>/';

它有点诀窍.

问题是如果我有两个divs – 像这样.

<div class="gallery">text to extract here</div>
<div class="gallery">text to extract from here as well</div>

我想从两个div中提取信息,但是在测试时我的问题是我没有在文本之间得到结果,而是:

"text to extract here </div>  
<div class="gallery">text to extract from here as well"

所以总结一下.它会跳过div的第一端.并继续下一个.
div中的文本可以包含<,/和换行符.只是你知道! 有没有人有这个问题的简单解决方案?我仍然是一个正则表达新手.

解决方法

这样的事情怎么样:

$str = <<<HTML
<div class="gallery">text to extract here</div>
<div class="gallery">text to extract from here as well</div>
HTML;

$matches = array();
preg_match_all('#<div[^>]*>(.*?)</div>#',$str,$matches);

var_dump($matches[1]);

注意’?’在正则表达式中,所以它“不贪心”.

哪个会给你:

array
  0 => string 'text to extract here' (length=20)
  1 => string 'text to extract from here as well' (length=33)

这应该可以正常工作……如果你没有瓦片化的div;如果你这样做……嗯……实际上:你真的确定要使用理性表达式解析HTML,这本身就不那么理性吗?

相关文章

一、校验数字的表达式 1 数字:^[0-9]*$ 2 n位的数字:^d{n}$ 3 至少n位的数字:^d{n,}$ 4 m-n位的数字...
正则表达式非常有用,查找、匹配、处理字符串、替换和转换字符串,输入输出等。下面整理一些常用的正则...
0. 注: 不同语言中的正则表达式实现都会有一些不同。下文中的代码示例除特别说明的外,都是使用JS中的...
 正则表达式是从信息中搜索特定的模式的一把瑞士军刀。它们是一个巨大的工具库,其中的一些功能经常...
一、校验数字的表达式 数字:^[0-9]*$ n位的数字:^\d{n}$ 至少n位的数字:^\d{n,}$ m-n位的数...
\ 将下一字符标记为特殊字符、文本、反向引用或八进制转义符。例如,“n”匹配字符“n”。“\n...