欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  Java

Java 实例 - 字符串替换

程序员文章站 2022-03-18 10:38:16
...
如何使用java替换字符串中的字符呢?

以下实例中我们使用 java String 类的 replace 方法来替换字符串中的字符:

public class StringReplaceEmp{
   public static void main(String args[]){
      String str="Hello World";
      System.out.println( str.replace( 'H','W' ) );
      System.out.println( str.replaceFirst("He", "Wa") );
      System.out.println( str.replaceAll("He", "Ha") );
   }}

以上代码实例输出结果为:

Wello World
Wallo World
Hallo World

以上就是Java 实例 - 字符串替换的内容,更多相关内容请关注PHP中文网(www.php.cn)!