开发者

Regular expression error: no ending delimiter

I'm trying to execute this regular expression:

<?php
    preg_match("/^([^\x00-\x1F]+?){0,1}/", 'test string');
?>

But keep getting an error:

Warning: preg_match() [function.preg-match]: No ending delimiter '/' found in /var/www/preg.php on line 6

I can't understand 开发者_如何学Gowhere it is coming from. I have an ending delimeter right there... I tried to change delimiter to other symbols and it didn't help.

I would appreciate your help on this problem.


I guess PHP chokes on the NULL character that denotes the end of a string in C.

Try it with single quotes so that \x00 is interpreted by the PCRE engine and not by PHP:

'/^([^\x00-\x1F]+?){0,1}/'

It seems that this is an already known bug (see Problems with strings containing \x00).


Like Gumbo said, preg_match is not binary safe.

Use instead:

preg_match("/^([^\\x{00}-\\x{1F}]+?){0,1}/", 'test string'));

This is the correct way to specify Unicode code points in PCRE.


I am not sure about php, but maybe the problem is that you need to escape your backslashes? try "/^([^\\x00-\\x1F]+?){0,1}/"

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜