String str = "一教楼101室"
Pattern p = Pattern.compile("\\d+");
Matcher m = p.matcher(str);
m.find();
System.out.println(m.group());//output is 101
做课程项目中,遇到一个小问题,需要从字符串中提取一下数字。
String str = "一教楼101室"
Pattern p = Pattern.compile("\\d+");
Matcher m = p.matcher(str);
m.find();
System.out.println(m.group());//output is 101
做课程项目中,遇到一个小问题,需要从字符串中提取一下数字。