淘先锋技术网

首页 1 2 3 4 5 6 7

在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中几种常用的去空格和换行的方法,根据具体的需求可以灵活使用。