Java中去除字符串中所有空格的几种方法
程序员文章站
2023-12-18 18:17:40
java中去掉空格 1. string.trim() trim()是去掉首尾空格 2.str.replace(" ", ""...
java中去掉空格
1. string.trim()
trim()是去掉首尾空格
2.str.replace(" ", ""); 去掉所有空格,包括首尾、中间
string str = " hell o ";
string str2 = str.replaceall(" ", "");
system.out.println(str2);
3.或者replaceall(" +",""); 去掉所有空格
4.str = .replaceall("\\s*", "");
可以替换大部分空白字符, 不限于空格
\s 可以匹配空格、制表符、换页符等空白字符的其中任意一个
1. string.trim()
trim()是去掉首尾空格
2.str.replace(" ", ""); 去掉所有空格,包括首尾、中间
复制代码 代码如下:
string str = " hell o ";
string str2 = str.replaceall(" ", "");
system.out.println(str2);
3.或者replaceall(" +",""); 去掉所有空格
4.str = .replaceall("\\s*", "");
可以替换大部分空白字符, 不限于空格
\s 可以匹配空格、制表符、换页符等空白字符的其中任意一个