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.
2つの数字の間のポイントを必要とするかどうかにかかわらず、正規表現を実現したいと考えています。int と double の数値を管理したい: ユーザーは "1" や "1.5" などの数値を入力できます。ありがとうございます。
このregexeprを使用してください:
d+([,.]d+)?
以下はその仕事をします:
^([1-9][0-9]*|0)(\.[0-9]+)?$
編集