Java 去掉字符串前面的空格可以使用 trim() 方法,例如:
String str = " hello world"; str = str.trim(); // 去掉前面的空格 System.out.println(str); // 输出 "hello world"
trim() 方法会返回去掉前后空格的字符串副本,原字符串不会发生改变。如果要去掉字符串中间的空格,可以使用 replaceAll() 方法,例
如:
String str = " hello world "; str = str.replaceAll("\\s+", ""); // 去掉所有空格 System.out.println(str); // 输出 "helloworld"
replaceAll() 方法可以接受一个正则表达式作为参数,在上面的例子中,\s+ 表示匹配一个或多个空格。replaceAll() 方法会返回一个新
的字符串,原字符串不会发生改变。
转自:java去掉字符串前面的空格_java去除字符串前后空格_weixin_44060488的博客-CSDN博客
标签:java,空格,replaceAll,str,字符串,去掉 From: https://www.cnblogs.com/wwssgg/p/17302278.html