摘要: 1 // 小数 2 Pattern.compile("(\\d+\\.\\d+)"); 3 4 // 整数 5 Pattern.compile("\\d+"); 6 7 8 Pattern pattern = Pattern.compile(规则); 9 Matcher matcher = pattern.matcher(content); 10 ... 阅读全文
posted @ 2018-04-17 18:50 Dapped_zhang 阅读(1190) 评论(0) 推荐(0) 编辑