允许的命名子模式字符

发布于 2024-11-03 09:43:51 字数 289 浏览 1 评论 0原文

命名子模式中允许使用哪些字符以及是否可以在命名子模式内转义?

(?<name>\w+)

我想使用这个例子 http://www.php .net/manual/en/function.preg-match.php#example-3946 并希望使用“hello-name”而不是“name”。

What characters are allowed in named subpattern and is it possible to escape inside named subpattern?

(?<name>\w+)

I want to use this example http://www.php.net/manual/en/function.preg-match.php#example-3946 and want to have "hello-name" instead of "name" for example.

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

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

发布评论

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

评论(1

情话难免假 2024-11-10 09:43:51

PCRE 只允许使用字母数字字符和下划线作为子模式名称:
http://regexkit.sourceforge.net/Documentation/pcre/pcrepattern.html#SEC14

PCRE only allows alphanumeric characters and underscores for subpattern names:
http://regexkit.sourceforge.net/Documentation/pcre/pcrepattern.html#SEC14

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