先行使用
Input并
find在循环中使用,而不是
matches:
Pattern pattern = Pattern.compile("Input(.*?)(?=Input|$)");Matcher matcher = pattern.matcher(s);while (matcher.find()) { System.out.println(matcher.group(1));}
看到它在线上工作:ideone
但是最好在这里使用split:
String[] result = s.split("Input");// You need to ignore the first element in result, because it is empty.
看到它在线上工作:ideone
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)