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.
次のものに対して検証したいのですが、これを確認するための正規表現を作成するにはどうすればよいですか?
検証したい
1-ABCD
1 桁の数字の後にハイフンと 4 文字 (大文字と小文字は区別されません) が続きます。
ありがとう!
次のステートメントを使用できます
"1-ABCD".match(/\d-\w{4}/);
それが役に立てば幸い。
Try this,
"1-ABCD".match(/^\d\-\w{4}$/)
Same as above one, additionally we need to add the start and end of string