允许的命名子模式字符
命名子模式中允许使用哪些字符以及是否可以在命名子模式内转义?
(?<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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