代码语言: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