在Java中,可以使用以下方法去除字符串中的空格:
- 使用
trim() 方法去除字符串两端的空格:String str = "hello world";String trimmedStr = str.trim();System.out.println(trimmedStr); // 输出: "hello world"- 使用
replaceAll() 方法去除字符串中所有空格:String str = "hello world";String noSpaceStr = str.replaceAll("\\s", "");System.out.println(noSpaceStr); // 输出: "helloworld"- 使用
replace() 方法去除字符串中所有空格:String str = "hello world";String noSpaceStr = str.replace(" ", "");System.out.println(noSpaceStr); // 输出: "helloworld"这些方法可以根据具体需求选择使用哪种去除空格的方式。
上一篇:如何创建一个新用户并授予sudo权限
下一篇:java自动类型转换的规则是什么
java









