需要计算正则表达式发现声明数组的匹配,我试过.groupCount()但是没有实现。代码如下:Pattern p2 = Pattern.compile("<char>(.*?)</char>");
response = response.replaceAll("[\\r\\n]+", "");
Matcher m2 = p2.matcher(response);
String[] chars = new String[m2.groupCount()];应该找到2,但是返回的是1。不知道为什么。
添加回答
举报
0/150
提交
取消