溫馨提示×

java中怎么用replace替換多個字符

小億
403
2023-12-27 15:44:15
欄目: 編程語言

在Java中,可以使用replace方法來替換多個字符。具體操作如下:

  1. 使用replace方法替換一個字符。
String str = "Hello World!";
str = str.replace("l", "L");
System.out.println(str); // 輸出:HeLLo WorLd!
  1. 使用replace方法替換多個字符。
String str = "Hello World!";
str = str.replace("l", "L").replace("o", "O");
System.out.println(str); // 輸出:HeLLO WOrLd!
  1. 使用正則表達式替換多個字符。
String str = "Hello World!";
str = str.replaceAll("[lo]", "X");
System.out.println(str); // 輸出:HeXX XWXXrXd!

在第三種方法中,我們使用了replaceAll方法,并使用正則表達式"[lo]"來匹配字符’l’和’o’,然后將其替換為’X’。正則表達式中的方括號表示字符類,可以指定多個字符進行匹配。

0