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.
ちょうど 10 桁の文字列の JavaScript 正規表現パターンがあります。
reg =/^\d{10,10}$/;
しかし、これを変更して、番号1で始まらない文字列にのみ一致するようにする方法がわかりません
ありがとう
あなたはこれを求めている:
^[02-9]\d{9}$
debuggexで視覚化できます。