开发者社区> 问答> 正文

如何使用java替换字符串中的字符呢?

如何使用java替换字符串中的字符呢?

展开
收起
珍宝珠 2020-02-12 16:37:09 573 0
1 条回答
写回答
取消 提交回答
  • 使用 java String 类的 replace 方法来替换字符串中的字符:

    StringReplaceEmp.java 文件
    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
    
    2020-02-12 16:37:36
    赞同 展开评论 打赏
问答排行榜
最热
最新

相关电子书

更多
Spring Cloud Alibaba - 重新定义 Java Cloud-Native 立即下载
The Reactive Cloud Native Arch 立即下载
JAVA开发手册1.5.0 立即下载