LoginSignup
4
2

More than 3 years have passed since last update.

【Flutter】数値かどうかを調べる

Posted at

Flutterで、数字または数値形式の文字列であるかを調べる。

書き方

sample.dart
  double.tryParse(input) != null;

tryParseについて
https://api.flutter.dev/flutter/dart-core/int/tryParse.html

検証

入力値  結果
123 true
+123 true
-123 true
123.456 true
1,234 false
hoge false
null false
123x false
4
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
2