我写了这个正则表达式:
String REGEX = "^\\s+something\\s+(not\\s+)?else\\s+((\\d+|\\d+-\\d+),\\s+)*(\\d+|\\d+-\\d+)$";
这是我的主要方法:
public static void main(String... args) {
Matcher matcher = PATTERN.matcher(" something else 1, 3, 4, 5-7");
if (matcher.matches()) {
for (int index = 0; index <= matcher.groupCount(); index++) {
System.out.println(index + ": " + matcher.group(index));
}
}
}
这是我的输出:
0: match cos 1, 3, 4, 5-7
1: null
2: 4,
3: 4
4: 5-7
它似乎1
并且3
没有被捕获。(输出很好。)如何修复我的正则表达式以便我可以捕获它们(并在最后捕获它们而不用逗号)4
?5-7