Java 正则提取数字串
时间:2014-05-08 14:34:56
收藏:0
阅读:326
例如:有一个字符串:"数量最低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
评论(0)