Java 程序可移除字符串开始和结尾处的空格


利用 trim() 方法可移除字符串开始和结尾处的空格。

假设以下字符串包含空格。

str1 = " The Big Bang Theory ";

现在,我们来去掉开始和结尾处的空格。

String str2 = str1.trim();

以下是最终示例及输出。

示例

 在线演示

public class Demo {
   public static void main(String[] args) {
      String str1 = " The Big Bang Theory ";
      System.out.println("String: "+str1);
      String str2 = str1.trim();
      System.out.println("Updated string (trimming spaces): "+str2);
   }
}

输出

String: The Big Bang Theory
Updated string (trimming spaces): The Big Bang Theory

更新于:25-6-2020

360 查看

开始你的职业生涯

完成本课程认证

开始
广告