当需要替换一个字符串中的某个字符,你会怎么做?
方法一:使用replace()
String str = "Hello, world!";
String newStr = str.replace(",", ""); // 去掉逗号
System.out.println(newStr); // 输出Hello world!
方法二:使用repalceAll()正则的方式
String str = " Hello world! ";
String newStr = str.replaceAll("\\s+", "");
System.out.println(newStr); // 输出Helloworld!
其中\\s+代表删除一个或者多个空格
正则表达式学习的路径:https://blog.csdn.net/daima_trash/article/details/122276518
标签:这么,String,System,Hello,str,world,应该,newStr From: https://blog.51cto.com/u_16190226/7089663