trim()
注意:如果此 String 物件表示一個空字元序列,或者此 String 物件表示的字元序列的第一個和最後一個字元的程式碼都大於 'u0020'(空格字元),則返回對此 String 物件的參照。否則,若字串中沒有程式碼大於 'u0020' 的字元,則建立並返回一個表示空字串的新 String物件。public static void main(String[] args){ String strCom = "JAVA程式設計詞典"; //定義字串 String str = strCom.trim(); //去除字串前後的空格 System.out.println("未去除前後空格的字串:"+strCom); System.out.println("去除前後空格後的字串:"+str); }