javascript - php正则匹配后下一个引号问题
程序员文章站
2024-02-02 20:44:40
...
$html = title
EOF;
$isMatched = preg_match('/(.*?)/', $html, $matches);
回复内容:
$html = title
EOF;
$isMatched = preg_match('/(.*?)/', $html, $matches);
那你就要用贪婪匹配咯~/(.*?)/
你用.*?
后面跟"
他只要匹配到下一字符是"
就停止了
是用禁止贪婪匹配U
个人经验 你写正则的时候都加上Uis
'/
上一篇: Redis 使用总结
下一篇: MYSQL的select 学习笔记