例如:有一个字符串:"数量最低2000份",将其中的2000数字提取出来。
String arg0 = "数量最低2000份"; Pattern p = Pattern.compile("\\d+"); Matcher m = p.matcher(arg0); String result = ""; if(m.find()){ result = m.group(0); } System.out.println(result);
打印出:2000
2021-11-26 16:39:34
例如:有一个字符串:"数量最低2000份",将其中的2000数字提取出来。
String arg0 = "数量最低2000份"; Pattern p = Pattern.compile("\\d+"); Matcher m = p.matcher(arg0); String result = ""; if(m.find()){ result = m.group(0); } System.out.println(result);
打印出:2000