java將一個字符串複製到另外一個字符串,並去除多餘空格符

問題爲將相似"Hello      world!"變成"Hello world!" 問題思路:先切割字符串,再將字符串從新組合 核心代碼app public void filter(String s){ String[] b = s.split("\\s+"); StringBuffer stringBuffer = new StringBuffer();
相關文章
相關標籤/搜索