java去掉字符串中的
时间: 2023-08-10 12:02:16 浏览: 63
java 去除字符串中的空格和其他字符
5星 · 资源好评率100%
可以使用 String 类中的 replaceAll() 方法来去掉字符串中的某个字符,比如去掉逗号 ",",可以使用以下代码:
```
String str = "1,2,3,4,5";
str = str.replaceAll(",", "");
System.out.println(str);
```
输出结果为:
```
12345
```
阅读全文