replaceAll
方法可與 Pattern
配合使用來替換字符串中的指定文本。以下是一個(gè)示例:
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.";
// 創(chuàng)建一個(gè)正則表達(dá)式匹配模式,匹配所有小寫字母
Pattern pattern = Pattern.compile("[a-z]");
// 創(chuàng)建一個(gè)Matcher對象,用于匹配文本
Matcher matcher = pattern.matcher(text);
// 使用replaceAll方法替換匹配到的小寫字母為大寫字母
String result = matcher.replaceAll(match -> match.group().toUpperCase());
System.out.println(result);
}
}
在上面的示例中,我們首先創(chuàng)建了一個(gè)正則表達(dá)式匹配模式 [a-z]
,該模式用于匹配所有小寫字母。然后,我們使用 Pattern
類的 matcher
方法創(chuàng)建了一個(gè) Matcher
對象來匹配文本。最后,我們使用 replaceAll
方法結(jié)合 lambda 表達(dá)式來替換匹配到的小寫字母為大寫字母。
輸出結(jié)果為:
HHeLLo, WoRLD! THis is a TeST STRinG.