可以使用trim()
方法從字串中刪除所有前導和尾隨空格和控制字元。
trim()
方法刪除字串中所有前導和尾隨字元,其Unicode值小於\u0020
(十進位制32)。 例如,
replace()
方法將舊字元和新字元作為引數。它通過將新字元替換所有的舊字元並返回一個替換後新的String
物件。 例如,
public class Main {
public static void main(String[] args) {
String oldStr = new String("tooth");
String newStr = oldStr.replace('o', 'e');
System.out.println(newStr);
}
}
上面的程式碼生成以下結果。
teeth