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.1 以上。
例えば
何かご意見は?
この正規表現を使用できますか:
/^0[.]?[1-9]+$|^[1-9]+[.]?[0-9]+$|^[1-9]+$/.test('1.2');
または、その逆を行います:
/^0[.]0$|^0$/.test('0.0'); // return true when number is 0.0 or 0
これがお役に立てば幸いです。