如果句子中的空白数超过1,如何将句子中的空白数减少为1?

最佳答案

假设您的意思是“连续”空格,这是一个解决方案。

String sentence = "hello   here are \n some   whitespaces.";
String newString = sentence.replaceAll("\\s+", " ");
System.out.println(newString);


输出:

hello here are some whitespaces.

10-08 02:32