标签:
直接上代码:
String reg = "\\D+(\\d+)$"; //提取字符串末尾的数字:封妖塔守卫71 == >> 71 String s = monster.getMonsterName(); Pattern p2 = Pattern.compile(reg); Matcher m2 = p2.matcher(s); int historyHighestLevel = 1; if(m2.find()){ historyHighestLevel = Integer.parseInt(m2.group(1)); System.out.println(m2.group(1)); // 组提取字符串 }
相似的我也可以提起字符串中间的一个或多个数字:
reg = "\\D+(\\d+)$\\D+"; // 提起字符串中间的数字
reg = "\\D+(\\d+)$\\D+(\\d+)\\D*"; // 提起字符串中间的多个数字
标签:
原文地址:http://www.cnblogs.com/digdeep/p/4186647.html