是的,Java的matches方法支持分組。當使用正則表達式進行匹配時,可以使用括號來將匹配的部分分組,然后在匹配結果中獲取這些分組的內容。例如:
String input = "Hello, world!";
Pattern pattern = Pattern.compile("(Hello), (world)!");
Matcher matcher = pattern.matcher(input);
if (matcher.matches()) {
String greeting = matcher.group(1);
String target = matcher.group(2);
System.out.println("Greeting: " + greeting);
System.out.println("Target: " + target);
}
在上面的例子中,正則表達式"(Hello), (world)!"將"Hello"和"world"分別分組,然后通過matcher.group方法可以獲取到這兩個分組的內容。