在Java中,可以使用replace方法來替換多個字符。具體操作如下:
String str = "Hello World!";
str = str.replace("l", "L");
System.out.println(str); // 輸出:HeLLo WorLd!
String str = "Hello World!";
str = str.replace("l", "L").replace("o", "O");
System.out.println(str); // 輸出:HeLLO WOrLd!
String str = "Hello World!";
str = str.replaceAll("[lo]", "X");
System.out.println(str); // 輸出:HeXX XWXXrXd!
在第三種方法中,我們使用了replaceAll方法,并使用正則表達式"[lo]"來匹配字符’l’和’o’,然后將其替換為’X’。正則表達式中的方括號表示字符類,可以指定多個字符進行匹配。