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から99までの整数のみを許可する正規表現とは何ですか?(1と99の両方を含む)
これを試して:
^[1-9][0-9]?$
前の?トークンがオプションであることを意味します。
?
^とは、それぞれ文字列の開始と終了の$アンカーです。
^
$
確かにあなたは意味します
[1-9][0-9]?