VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > PHP >
  • 浅谈php正则表达式中的非贪婪模式匹配的使用

这里通过实例简单介绍了下php正则表达式中的非贪婪模式匹配的使用方法,有需要的小伙伴们参考下吧。

通常我们会这么写:

  1. $str = "http://www.baidu/.com?url=www.sina.com/"
  2. preg_match("/http:(.*)com/"$str$matches); 
  3. print_r($matches); 

结果:

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

非贪婪模式匹配:

  1. $str = "http://www.baidu/.com?url=www.sina.com/"
  2. preg_match("/http:(.*?)com/"$str$matches); 
  3. print_r($matches); 

结果:

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

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

 

出处:http://www.phpfensi.com/php/20210430/14673.html


相关教程