本文介绍了如何用Dart将字符串解析为数字?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想将1或32.23这样的字符串解析为整数和双精度。
I would like to parse strings like "1" or "32.23" into integers and doubles. How can I do this with Dart?
推荐答案
您可以使用 int将字符串解析为整数。 parse()
。例如:
var myInt = int.parse('12345');
assert(myInt is int);
print(myInt); // 12345
注意 int.parse()
接受 0x
前缀字符串。
Note that int.parse()
accepts 0x
prefixed strings. Otherwise the input is treated as base-10.
您可以使用 double.parse()。例如:
var myDouble = double.parse('123.45');
assert(myDouble is double);
print(myDouble); // 123.45
FormatException,如果它无法解析输入。
parse()
will throw FormatException if it cannot parse the input.
这篇关于如何用Dart将字符串解析为数字?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!