浅谈php正则表达式中的非贪婪模式匹配的使用_php技巧
程序员文章站
2022-04-27 09:09:29
...
通常我们会这么写:
$str = "http://www.baidu/.com?url=www.sina.com/";
preg_match("/http:(.*)com/", $str, $matches);
print_r($matches);
$str = "http://www.baidu/.com?url=www.sina.com/";
preg_match("/http:(.*?)com/", $str, $matches);
print_r($matches);
复制代码 代码如下:
$str = "http://www.baidu/.com?url=www.sina.com/";
preg_match("/http:(.*)com/", $str, $matches);
print_r($matches);
结果:
复制代码 代码如下:
非贪婪模式匹配:
复制代码 代码如下:
$str = "http://www.baidu/.com?url=www.sina.com/";
preg_match("/http:(.*?)com/", $str, $matches);
print_r($matches);
结果:
复制代码 代码如下:
简单的说只要在一个字符后面跟上限定个数的特殊字符,匹配就是非贪婪模式了。小伙伴们是否理解了呢?
上一篇: linux如何查看文件大小
下一篇: win7系统如何进行磁盘优化