在 Symfony2 正则表达式验证器中使用引号字符

发布于 2025-01-02 18:45:26 字数 496 浏览 0 评论 0原文

这是我的问题:

@Assert\Regex(
*     pattern="/^[A-Za-z0-9][A-Za-z0-9\"]*$/",
*     groups={"creation", "creation_logged"}
* )

我正在使用 Symfony 2 的正则表达式验证器,我想允许在我的正则表达式中使用引号字符,但不幸的是模式在此引号处关闭,我有一个美丽的错误。我尝试在它之前添加一个反斜杠,但它也不起作用!

我不是唯一遇到此问题的人:http://groups.google .com/group/symfony2/browse_thread/thread/d0ade380e4f5a64e 但也没有答案:s

有没有办法添加引用图案中的字符 ?

Here my problem:

@Assert\Regex(
*     pattern="/^[A-Za-z0-9][A-Za-z0-9\"]*$/",
*     groups={"creation", "creation_logged"}
* )

I'm using the regex validator of Symfony 2, I want to allow the quote characters in my regex, but unfortunately the pattern close at this quote, I have a beautiful error. I tried to add an antislash before it, but it doesn't work too !

I'm not the only guy to have this problem: http://groups.google.com/group/symfony2/browse_thread/thread/d0ade380e4f5a64e but no answer too :s

Is there a way to add the quote characters in the pattern ?

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

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

发布评论

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

评论(1

柠檬心 2025-01-09 18:45:26

使用字符代码代替:

* @Assert\Regex(
*     pattern="/^[A-Za-z0-9][A-Za-z0-9\x22]*$/",
*     groups={"creation", "creation_logged"}
* )

Use the character code instead:

* @Assert\Regex(
*     pattern="/^[A-Za-z0-9][A-Za-z0-9\x22]*$/",
*     groups={"creation", "creation_logged"}
* )
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文