0

是否可以从处理中的字符串中删除换行符 ('\n') 字符。

例如

'hello,
how are you,
that's nice.'

变成

'hello, how are you, that's nice'

谢谢

4

1 回答 1

1

由于它基于 Java,您可以使用String API中的所有方法。例如:

String s = "hello,\nhow are you,\nthat's nice.";
s = s.replace('\n', ' ');
println(s);
于 2013-03-24T15:13:00.233 回答