1. 程式人生 > >JAVA String 中去掉空格的方法

JAVA String 中去掉空格的方法

  1. 去掉首尾空格

    str.trim();

  2. 去掉所有空格,包括首尾、中間

    str.replace(" ", "");

    例如:

    String str = " hell o "; String str2 = str.replaceAll(" ", "");
    System.out.println(str2); //輸出hello(無空格)

  3. 去掉所有空格

    str.replaceAll(" +","");

  4. \s 可以匹配空格、製表符、換頁符等空白字元的其中任意一個

    str.replaceAll("\\s*", "");