tqd354 2015-04-01 01:42 采纳率: 0%
浏览 2997
已采纳

php中如何用preg_match_all匹配字符串

 <div class="Wrapper">
<div class="colImg">
<a href="http://store.shopping.yahoo.co.jp/matsunami/fcdm3.html"></a>
</div>
<div class="wrCol cf">
<div class="colText">

</div>
<div class="colPrice">
<p class="price"><em>4,603</em></p>
</div>

<div class="colStore">

</div>
</div>
<div class="itemMatch"><a href="http://topics.shopping.yahoo.co.jp/notice/archives/post_8.html">123</a></div>
</div>

我想要获取

 <div class="Wrapper"></div>

里面的整个内容(包含了6个div,也可能是7个div,所以包含的div个数可能不定),即:


<div class="colImg">
<a href="http://store.shopping.yahoo.co.jp/matsunami/fcdm3.html"></a>
</div>
<div class="wrCol cf">
<div class="colText">

</div>
<div class="colPrice">
<p class="price"><em>4,603</em></p>
</div>

<div class="colStore">

</div>
</div>
<div class="itemMatch"><a href="http://topics.shopping.yahoo.co.jp/notice/archives/post_8.html">123</a></div>

如何用preg_match_all获取如上字符串,或者用其他方法来实现?

  • 写回答

4条回答 默认 最新

  • zhangsheng_1992 2015-04-01 09:52
    关注

    preg_match_all($reg,$str.$data)
    $reg 为你匹配的正则表达式
    $str 为要匹配的字符串
    $data 为匹配到的数组
    首先$str = file_get_contents($filename)将文件读入字符串
    然后正则$reg = '/^

    (.*)<\/div>$/';
    然后preg_match_all($reg,$str,$data)
    打印下$data看看 这种多层嵌套不是太容易匹配 多改改正则即可
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(3条)

报告相同问题?

悬赏问题

  • ¥15 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 java 的protected权限 ,问题在注释里
  • ¥15 这个是哪里有问题啊?