在一行中,我可能(123,456)
想在 java 中使用模式找到它。我所做的是:
Pattern pattern = Pattern.compile("\\W");
Matcher matcher = pattern.matcher("(");
while (matcher.find()) {
System.out.print("Start index: " + matcher.start());
System.out.print(" End index: " + matcher.end() + " ");
}
输入:This is test (123,456)
输出:Start index: 0 End index: 1 (
为什么??