Java String replace() 方法

返回 Java Strings 类


replace() 方法返回一个替换后的新字符串

语法

public String replace(char oldChar, char newChar)

参数

  • oldChar - 被替换的字符。
  • newChar - 替换的字符。

返回值

方法返回一个新字符串,该字符串是用 newChar 替换此字符串中所有出现的 oldChar 。

示例

public class Main {

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

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

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

运行示例

上面示例编译运行结果如下

Return Value :WelcTme tT jiyik.cTm
Return Value :WeDcome to jiyik.com

返回 Java Strings 类

查看笔记

扫码一下
查看教程更方便