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.
次の値を受け入れる正規表現が必要です。
そして、以下を受け入れません:
どんな助けでもいただければ幸いです。
これは次のようになります。[0-9]*(\.[0-9]{1,2})?
[0-9]*(\.[0-9]{1,2})?
ここで、{1,2}はドットの後の1〜2桁を表します。
{1,2}
考えられる正規表現の1つは
\d*([.]\d{1,2})?
これは、0桁以上に一致し、ドットと1桁または2桁を含むオプションのグループに一致します。