📜  颤振检查字符串是否为数字飞镖代码示例

📅  最后修改于: 2022-03-11 14:48:03.443000             🧑  作者: Mango

代码示例1
bool isNumeric(String s) {
 if (s == null) {
   return false;
 }
 return double.tryParse(s) != null;
}