n 个字符或至少 z 个字符的正则表达式

发布于 2025-01-10 20:54:55 字数 343 浏览 0 评论 0原文

我有一个输入控件(.net 正则表达式,并且必须是 1 个行),我必须确保它的长度为 15 个字符,并带有 - 。或者输入框可以有 N/A

,例如 1443-RXSW3-8738 - 这是 15 个字符长 或 N/A

到目前为止,我有这个 ^[a-zA-Z0-9]{15}$‍‍ ,这只能确保它至少有 15 个字符。

是否有可能为此使用 1 行正则表达式?以下作品。我只需确保它的长度是否为 15 个字符,那么它必须有连字符。

^[a-zA-Z0-9]{15}$‍‍|(N\/A\b)

输入框必须有15个字符长并且必须有-。或者它可以有N

I have a input control (.net Regex and must be 1 liner) that I have to make sure it's either 15 characters long with - . or input box can have N/A

for example, 1443-RXSW3-8738 - this is 15 characters long
or N/A

So far I have this ^[a-zA-Z0-9]{15}$‍‍ and this only makes sure it has at least 15 character.

Is it possible to have a 1 line Regex for this? The following works. I just have to make sure if it's 15 characters long then it must have hyphen.

^[a-zA-Z0-9]{15}$‍‍|(N\/A\b)

Input box must have 15 characters long and must have -. or it can have N

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

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

发布评论

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

评论(1

枫以 2025-01-17 20:54:55

Use ^([a-zA-Z0-9-]{15}|N/A)$. We simply add hyphen to the character class at either the end or the start to ensure it is treated as a normal character.

Try it out at http://regexstorm.net/tester?p=%5e%28%5ba-zA-Z0-9-%5d%7b15%7d%7cN%2fA%29%24&i=1443-RXSW3-8738

Reference: https://learn.microsoft.com/en-us/dotnet/standard/base-types/character-classes-in-regular-expressions#positive-character-group--

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