如何在JAVA中不使用“\\ s”删除字符串中的间距?

时间:2018-02-28 17:31:24

标签: java removing-whitespace

我知道如何删除entityType的间距。但我需要的是这样的事情:

.replaceAll("\\s+","");

有没有办法做到这一点?

1 个答案:

答案 0 :(得分:-1)

String str = "a b c d e";
String newStr = "";
for (int i=0; i < str.length(); i++) {
    char ch = str.charAt(i);
    if (ch != 32)
        newStr += ch;
}
System.out.println(newStr);

它将打印abcde