码迷,mamicode.com
首页 > Web开发 > 详细

php正则表达式中的非贪婪模式匹配的使用

时间:2015-07-29 10:15:25      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:php   正则表达式   

php正则表达式中的非贪婪模式匹配的使用

通常我们会这么写:

$str = "http://www.baidu/.com?url=www.sina.com/";

preg_match("/http:(.*)com/", $str, $matches);

print_r($matches);

结果:

Array ( [0] => http://www.baidu/.com?url=www.sina.com [1] => //www.baidu/.com?url=www.sina. )

非贪婪模式匹配:

$str = "<a http://www.baidu/.com?url=www.sina.com/";

preg_match("/http:(.*?)com/", $str, $matches);

print_r($matches);

结果:

Array ( [0] => http://www.baidu/.com [1] => //www.baidu/. )

简单的说只要在一个字符后面跟上限定个数的特殊字符,匹配就是非贪婪模式了。小伙伴们是否理解了呢? 

版权声明:本文为博主原创文章,未经博主允许不得转载。

php正则表达式中的非贪婪模式匹配的使用

标签:php   正则表达式   

原文地址:http://blog.csdn.net/u011252402/article/details/47122451

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!