在正则表达式中 \xhh 与 \x{hh} 相同吗?

发布于 2024-11-24 03:37:52 字数 294 浏览 0 评论 0原文

在正则表达式中似乎是相同的:

if(preg_match('/\x{61}/',"a",$m)) //Same as just \x61
    print_r($m);

但是如果你将 echo 两者分开。

echo "\x61";//Display a
echo "\x{61}";//Display \x{61}

注意:不要与 '/\x{0000}/u' 混淆,

我没有看到相关信息,也不确定使用哪个。

Within a regex seems that it is the same:

if(preg_match('/\x{61}/',"a",$m)) //Same as just \x61
    print_r($m);

But if you make echo both apart.

echo "\x61";//Display a
echo "\x{61}";//Display \x{61}

Note: Not confuse with the '/\x{0000}/u'

I don't see info about that and I'm not sure which to use.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

吲‖鸣 2024-12-01 03:37:52

PCRE有自己的转义规则,与php中的不同。来自 http://www.pcre.org/pcre.txt

值小于 256 的字符可以由以下任一定义
\x 有两种语法。他们的汉化方式没有什么区别
德莱德。例如,\xdc 与 \x{dc} 完全相同。

pcre has its own escape rules, which are different from those in php. From http://www.pcre.org/pcre.txt

Characters whose value is less than 256 can be defined by either of the
two syntaxes for \x. There is no difference in the way they are han-
dled. For example, \xdc is exactly the same as \x{dc}.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文