REGEX 拒绝简单的字母数字

发布于 2024-09-01 22:39:15 字数 232 浏览 3 评论 0原文

我不明白;这应该很简单:

为什么这个文本框条目:

Foo 2010

由这个正则表达式验证:

ValidationExpression="^[a-zA-Z0-9 -_!]+$"

抛出无效的输入错误?它旨在允许字母数字、空格、破折号、下划线和感叹号。

REGEX 让我头疼......

I don't get it; this should be simple:

Why does this text box entry:

Foo 2010

Validated by this REGEX:

ValidationExpression="^[a-zA-Z0-9 -_!]+$"

Throw an invalid entry error? It is intended to allow alphamumerics, spaces, dashes, underscores and exclamation marks.

REGEX gives me a headache ...

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

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

发布评论

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

评论(1

颜漓半夏 2024-09-08 22:39:15

破折号 - 应该放在 [ 之后,或者放在 ] 之前,或者用 \ 转义,
否则它将被视为类范围元字符。

试试这个: ValidationExpression="^[-a-zA-Z0-9 _!]+$"

The dash - should be placed right after [ or placed before ] or escaped with \,
otherwise it'll be treated as a class range metacharacter.

Try this: ValidationExpression="^[-a-zA-Z0-9 _!]+$"

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