我有一个这样的字符串:
String orginal = "this is for test hello\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n" +
"\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nhello" +
"\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nhello";
用户在文本区域输入内容时按'enter'很多次,所以在java中,它变成了很多'\r\n'。我想将其更改为:
String newStr = "this is for test hello\r\nhello\r\nhello"
我怎样才能只保留一个\r\n