Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想向我的一个输入标签添加一个模式,该标签检查用户给定的输入是否是正确的 NetBIOS 名称。
NetBIOS 名称最多可包含 15 个字符。它可以包含数字和只是大写字母...
我尝试使用以下代码解决此问题,但它不起作用:
pattern="/([A-Z0-9]{1,15})/"
有人可以帮忙吗?
您正在将字符串分配给pattern; 您想使用正则表达式文字:
pattern
if(/^[A-Z0-9]{1,15)$/.test(string)) { ... }