标签:技术 bsp F12 span ring trim inf rgba 处理
String regEx="[^0-9]";//正则表达式 String str="sd34fgsfgh6756gff1223bvhgh";//待处理的字符串 Pattern pattern = Pattern.compile(regEx); Matcher matcher = pattern.matcher(str);//匹配除数字以外的字符 String num=matcher.replaceAll("").trim();//使用空字符替换匹配到的字符,最后只留下数字 System.out.println(Integer.valueOf(num));//将字符串转换成数值输出
输出:
标签:技术 bsp F12 span ring trim inf rgba 处理
原文地址:https://www.cnblogs.com/xiexiaoxia/p/14358455.html