第一次使用正则表达式,利用正则表达式中group的方法在字符串str1[201701, 201706]中取出201701,201706,
String str1 = "[201701, 201706]"; Pattern pattern = Pattern.compile("\\[(\\d{6}),\\s(\\d{6})\\]"); Matcher match = pattern.matcher(str1); match.find(); String start = match.group(1); String end = match.group(2); System.out.println(start); System.out.println(end);
此时 输出:
201701
201706
\\[(\\d{6}),\\s(\\d{6})\\]中 第一个()内的内容为group(1),第二个()中的内容为group(2)
match.find()必须要有