在Java中,你可以使用replace()
或replaceAll()
方法来过滤换行符。这里有两种方法:
方法1:使用replace()
方法
public class Main {
public static void main(String[] args) {
String input = "Hello, World!\nThis is a test.";
String output = input.replace("\n", "");
System.out.println(output);
}
}
方法2:使用replaceAll()
方法
public class Main {
public static void main(String[] args) {
String input = "Hello, World!\nThis is a test.";
String output = input.replaceAll("\n", "");
System.out.println(output);
}
}
在这两个示例中,我们将输入字符串中的所有换行符(\n
)替换为空字符串,从而删除换行符。