Home >Backend Development >PHP Tutorial >正则截取html中的一段

正则截取html中的一段

WBOY
WBOYOriginal
2016-06-23 14:38:16985browse

<html><body>..................<ul class="style5"><li><a href="/profiles/83291221"><img src="/images/252754752" alt="标题标题" />标题标题</a></li><li><a href="/profiles/83291221"><img src="/images/252754752" alt="标题标题" />标题标题</a></li><li><a href="/profiles/83291221"><img src="/images/252754752" alt="标题标题" />标题标题</a></li></ul>................</body></html>


这样的循环  我要截取第一条,多的不要

  • 正则截取html中的一段标题标题
  •  中的"83291221" "标题标题"  这两个,另外把这两个转换成变量  求大神解@@@



    回复讨论(解决方案)

    preg_match_all("|<li><a href=[\"\']\/(.*)\/(.*)[\"\']><img (.*) alt="正则截取html中的一段" >(.*)</a></li>|U", $str, $out);$a = $out[2][0];$b = $out[4][0];echo "a::$a , b::$b";

    页面有点大,有没有更高效的方法!!!!!!!

    preg_match('#<ul class="style5">(.+?)</ul>#s',$s,$m);preg_match('#<li><a href="/profiles/(\d+)"><img [^ alt="正则截取html中的一段" >]+>(.+?)</a></li>#s',$m[1],$ar);print_r($ar);

    Statement:
    The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn