如何在Flutter和Dart中检查数字字符串

2021-09-08 17:39:12 浏览数 (1)

代码语言:javascript复制

如何在 Flutter 和 Dart 中检查数字字符串

数字字符串只是字符串格式的数字。

数字字符串示例:

代码语言:javascript复制
'123',
'0.123',
'4.234,345',
'-33.33',
' 44.44'

要检查字符串是否为数字字符串,可以使用double.tryParse()方法。如果返回值等于null,则输入不是数字字符串,否则是。

代码语言:javascript复制
if(double.tryParse(String input) == null){
   print('The input is not a numeric string');
} else {
   print('Yes, it is a numeric string');
}

例子

编码:

代码语言:javascript复制
void main(){
  if(double.tryParse('-33.230393399') == null){
    print('False');
  } else {
    print('True');
  }
}

输出:

代码语言:javascript复制
True

0 人点赞