给定一个字符串,我需要检查是否有多个换行符(\ n)。如果有,我需要将它们转换为一个换行符。

您能告诉我执行此操作的代码吗?谢谢!

最佳答案

试试这个

s = s.replaceAll("(\r?\n){2,}", "$1");

10-07 12:24