获取字符串中的第一个数字 Get first number from string
static String? firstNumber(String str) { final match = RegExp(r'[0-9]').firstMatch(str); return match?.group(0); }