Java删除字符串中多余的空格
时间: 2023-09-13 15:11:21 浏览: 228
可以使用Java中的trim()方法去除字符串两端的空格,然后使用replaceAll()方法将字符串中间的多余空格替换为一个空格。示例代码如下:
```
String str = " hello world ";
str = str.trim().replaceAll("\\s+", " ");
System.out.println(str);
```
输出结果为:
```
hello world
```
其中,trim()方法去除字符串两端的空格,replaceAll("\\s+", " ")方法将字符串中间的多余空格替换为一个空格。其中,"\\s+"表示匹配一个或多个空格。
相关问题
java 删除字符串内空格
你可以使用replaceAll方法来删除字符串内的空格,例如:
```
String str = "hello world";
str = str.replaceAll(" ", "");
```
这将把字符串中的所有空格删除,最终结果为"helloworld"。
java字符串删除字符串_Java从字符串中删除字符
在 Java 中,我们可以使用 String 类的 replace() 或者replaceAll() 方法来删除字符串中的指定字符。
例如,我们想要删除字符串 "hello world" 中的所有空格,可以使用以下代码:
```java
String str = "hello world";
str = str.replace(" ", ""); // 使用 replace() 方法删除空格
System.out.println(str); // 输出 "helloworld"
```
如果我们想要删除字符串中的多个字符,可以使用 replaceAll() 方法,该方法支持正则表达式。
例如,我们想要删除字符串 "hello, world!" 中的逗号和感叹号,可以使用以下代码:
```java
String str = "hello, world!";
str = str.replaceAll("[,!]", ""); // 使用 replaceAll() 方法删除逗号和感叹号
System.out.println(str); // 输出 "hello world"
```
在上面的代码中,我们使用了正则表达式 "[,!]" 来匹配逗号和感叹号,然后将其替换为空字符串。
阅读全文