Java Matcher 可以通過 group() 方法獲取匹配到的子字符串。
例如:
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class Main {
public static void main(String[] args) {
String text = "Hello, world! This is a test string.";
Pattern pattern = Pattern.compile("\\b\\w+\\b"); // 匹配單詞
Matcher matcher = pattern.matcher(text);
while (matcher.find()) {
String match = matcher.group(); // 獲取匹配到的子字符串
System.out.println(match);
}
}
}
上面的代碼中,我們使用 Matcher 進行匹配,并通過 group() 獲取匹配到的子字符串,然后將其輸出到控制臺。