$str = ".abcdeabcde";
preg_match(‘/a.+?e/‘, $str, $match);
print_r($match);
Array
(
[0] => abcdeabcde
)
--------------------------
贪婪匹配:正则表达式一般趋向于最大长度匹配,也就是所谓的贪婪匹配,默认情况下是贪婪模式;
preg_match(‘/a.+?e/‘, $str, $match);
print_r($match);
Array
(
[0] => abcde
)
非贪婪匹配:就是匹配到结果就好,就少的匹配字符;
当?紧跟在任何一个其他限制符(*,+,?,{n},{n,},{n,m})后面时,匹配模式是非贪婪的;
时间: 2024-10-21 09:00:12