正则表达式 - php正则问题
程序员文章站
2022-05-07 17:11:31
...
preg_match("/(?).*?(?=)/", $html, $result);
报错
preg_match(): Compilation failed: lookbehind assertion is not fixed length at offset 24
是为啥呢?
就是\s*那里,php的正则不是这样写嘛?
回复内容:
preg_match("/(?).*?(?=)/", $html, $result);
报错
preg_match(): Compilation failed: lookbehind assertion is not fixed length at offset 24
是为啥呢?
就是\s*那里,php的正则不是这样写嘛?
后瞻断言的内容被严格限制为只能用于匹配定长字符串。
http://php.net/manual/zh/regexp.reference.assertions.php
上一篇: 教你怎么用photoshop让眼睛变得更大(两种)
下一篇: PL/SQL 日期时间类型函数及运算