Java String replace()方法

2019-10-16 22:22:13

Java String replace()方法返回一個使用newChar替換此字串中所有出現的oldChar的字串。

語法

以下是此方法的語法 -

public String replace(char oldChar, char newChar)

引數

  • oldChar - 老字元。
  • newChar - 新字元。

返回值

  • 它返回一個使用newChar替換newChar後的新字串。

範例

public class Test {

   public static void main(String args[]) {
      String Str = new String("Welcome to Tw511.com");

      System.out.print("Return Value :" );
      System.out.println(Str.replace('W', 'T'));

      System.out.print("Return Value :" );
      System.out.println(Str.replace('i', 'L'));
   }
}

執行上面查詢語句,得到以下結果:

Return Value :Telcome to Tw511.com
Return Value :Welcome to YLLbaL.com