// 验证是否为数字
bool isNumber(String str) {
final reg = RegExp(r'^-?[0-9]+');
print('$str 是否数字:${reg.hasMatch(str)}');
return reg.hasMatch(str);
}
I/flutter (28095): 46403 是否数字:true
[GETX] 扫码数据:46403-120223330-2
I/flutter (28095): 120223330 是否数字:true
I/flutter (28095): 2 是否数字:true
网友评论