欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

java怎么去空格和換行

洪振霞1年前9瀏覽0評論

在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中幾種常用的去空格和換行的方法,根據具體的需求可以靈活使用。