通过正则表达式验证字母数字字符串中的空格

发布于 2024-11-18 03:55:59 字数 115 浏览 3 评论 0 原文

我使用以下正则表达式

"[a-zA-Z0-9 \s]{4,}" 

来验证带有空格且最小长度为 4 的字母数字条目。但它不接受空格。我在这里缺少什么。

I am using the following regular expression

"[a-zA-Z0-9 \s]{4,}" 

to validate an alphanumeric entry with space and minimum length 4. but it doesn't accept spaces. what am i missing here.

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

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

发布评论

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

评论(1

┾廆蒐ゝ 2024-11-25 03:55:59

此参考此处,在标志选项下显示:

x 如果设置,则允许使用空格和模式中的#comments

听起来您需要设置此x 标志选项才能使空白起作用。如果我理解正确的话,你的正则表达式应该看起来像

"(?x)[a-zA-Z0-9 \s]{4,}"

This reference over here, under flag options says:

x If set, allow use of white space and #comments within patterns

It sounds like you need to set this x flag option for whitespace to work. If I understand it correctly, your regex should look something like

"(?x)[a-zA-Z0-9 \s]{4,}"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文