在Java中,去空格和換行是常見的操作之一。下面介紹幾種常用的方法。
//去除字符串前后空格 String str = " hello "; str = str.trim(); System.out.println(str); //輸出:hello //去除字符串中所有空格 String str = " he llo wo r ld "; str = str.replaceAll("\\s+",""); System.out.println(str); //輸出:helloworld //去除字符串中的換行 String str = "hello\nworld"; str = str.replaceAll("\n",""); System.out.println(str); //輸出:helloworld
以上是Java中幾種常用的去空格和換行的方法,根據具體的需求可以靈活使用。
上一篇ajax 文本框提示信息
下一篇linux刪除php