replaceAll是一個字符串的方法,用于替換字符串中的指定字符或字符序列。
它的用法如下:
示例:
String str = "Hello World";
String newStr = str.replaceAll("o", "a");
System.out.println(newStr); // 輸出:Hella Warld
示例:
String str = "Hello World";
String newStr = str.replaceAll("o", match -> match.group().toUpperCase());
System.out.println(newStr); // 輸出:HellO WOrld
需要注意的是,replaceAll方法中的第一個參數是一個正則表達式,因此可以使用正則表達式的特性進行更加靈活的替換操作。同時,由于replaceAll是基于正則表達式進行匹配和替換的,因此在一些情況下可能會比較耗時,需要謹慎使用。