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 名であるかどうかをチェックする入力タグの 1 つにパターンを追加したいと考えています。
NetBIOS 名は最大 15 文字です。数字と大文字のみを含めることができます...
次のコードでこの問題を解決しようとしましたが、うまくいきません。
pattern="/([A-Z0-9]{1,15})/"
誰か助けてくれませんか?
に文字列を割り当てていますpattern。正規表現リテラルを使用したい場合:
pattern
if(/^[A-Z0-9]{1,15)$/.test(string)) { ... }