String str1 = "Hello — — world"; String str2 = str1.replace(" ", ""); System.out.println(str2);这样是把字符串中的空格替换成空的 就是相当于去掉了字符串中所有的空格试下效果
repalceAll呢String str="Hello world";str=str.repalceAll(" ","——");