java实现去除字符串中的空格(附完整源码)
时间: 2024-02-18 19:05:59 浏览: 70
字符串去掉空格
Java 中可以使用 String 类的 replaceAll() 方法来去除字符串中的空格。下面是示例代码:
```java
public class RemoveSpacesExample {
public static void main(String[] args) {
String strWithSpaces = " hello world ";
String strWithoutSpaces = strWithSpaces.replaceAll("\\s", "");
System.out.println("Before: " + strWithSpaces);
System.out.println("After: " + strWithoutSpaces);
}
}
```
在这段代码中,我们首先定义了一个包含空格的字符串 strWithSpaces,然后使用 replaceAll() 方法将其中的空格替换为空字符串。这里需要注意的是,replaceAll() 方法的第一个参数是一个正则表达式,这里我们使用了 "\\s" 表示匹配任何空白字符,包括空格、制表符和换行符。
输出结果如下:
```
Before: hello world
After: helloworld
```
这样就去除了字符串中的空格。
阅读全文