• JAVA中去掉空格


    String str = " ABCD 
    EFG HIJK
    LMN ";
    1. str.trim()
    是去掉首尾空格
     
    2.str.replace(" """); 
    去掉所有空格,包括首尾、中间
     
    3.str.replaceAll(" ",""); 
    去掉所有空格   
     
    4.str = str.replaceAll("\s*""");   
    可以替换大部分空白字符, 不限于空格
    s 可以匹配空格、制表符、换页符等空白字符的其中任意一个
    public static void main(String[] args) {
        String str = " ABCD 
    EFG HIJK
    LMN ";
        System.out.println("str.trim():
    " + str.trim());
        System.out.println("------分割线------");
        System.out.println("str.replace(" ", ""):
    " + str.replace(" ", ""));
        System.out.println("------分割线------");
        System.out.println("str.replaceAll(" ", ""):
    " + str.replaceAll(" ", ""));
        System.out.println("------分割线------");
        System.out.println("str.replaceAll("\\s*", ""):
    " + str.replaceAll("\s*", ""));
        System.out.println("------分割线------");
    }
    
    打印输出:
    str.trim():
    ABCD 
    EFG HIJK
    LMN
    ------分割线------
    str.replace(" ", ""):
    ABCD
    EFGHIJK
    LMN
    ------分割线------
    str.replaceAll(" ", ""):
    ABCD
    EFGHIJK
    LMN
    ------分割线------
    str.replaceAll("\s*", ""):
    ABCDEFGHIJKLMN
    ------分割线------

      

     
    • 添加到短语集
       
      • 没有此单词集:英语 -> 中文(简体)...
         
      • 创建新的单词集...
    • 拷贝
    • 添加到短语集
       
      • 没有此单词集:英语 -> 中文(简体)...
         
      • 创建新的单词集...
    • 拷贝
    • 添加到短语集
       
      • 没有此单词集:英语 -> 中文(简体)...
         
      • 创建新的单词集...
    • 拷贝
    • 添加到短语集
       
      • 没有此单词集:英语 -> 中文(简体)...
         
      • 创建新的单词集...
    • 拷贝
  • 相关阅读:
    团队第二次冲刺10(6.03)
    购买图书问题
    找水王02
    学习进度13
    团队第二次冲刺09(6.02)
    团队第二次冲刺08(6.01)
    C++通过Swig跨线程回调Python代码
    Windows 10系统永久关闭Windows Defender Antivirus防病毒程序方法
    Windows系统Python直接调用C++ DLL
    Windows10系统Python2.7通过Swig调用C++过程
  • 原文地址:https://www.cnblogs.com/MrSong97/p/12626117.html
Copyright © 2020-2023  润新知