0
是否可以從處理中的字符串中刪除換行符('\ n')。如何使用處理語言刪除字符串中的新行?
例如
'hello,
how are you,
that's nice.'
變成
'hello, how are you, that's nice'
感謝
是否可以從處理中的字符串中刪除換行符('\ n')。如何使用處理語言刪除字符串中的新行?
例如
'hello,
how are you,
that's nice.'
變成
'hello, how are you, that's nice'
感謝
由於它是基於Java的,你可以使用來自String API的所有方法。例如:
String s = "hello,\nhow are you,\nthat's nice.";
s = s.replace('\n', ' ');
println(s);
謝謝,效果很好。 – user2129160 2013-03-24 15:33:21
是否有任何特定的語言要執行此操作? – TAS 2013-03-24 14:35:38
@TAS,是的處理 – user2129160 2013-03-24 14:49:19