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

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

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