原文: https://www.programiz.com/java-programming/examples/remove-whitespaces

在此程序中,您将学习如何使用 Java 中的正则表达式删除给定字符串中的所有空格。

示例:删除所有空格的程序

  1. public class Whitespaces {
  2. public static void main(String[] args) {
  3. String sentence = "T his is b ett er.";
  4. System.out.println("Original sentence: " + sentence);
  5. sentence = sentence.replaceAll("\\s", "");
  6. System.out.println("After replacement: " + sentence);
  7. }
  8. }

运行该程序时,输出为:

  1. Original sentence: T his is b ett er.
  2. After replacement: Thisisbetter.

在上面的程序中,我们使用StringreplaceAll()方法删除并替换字符串sentence中的所有空格。

我们使用正则表达式\\s查找字符串中的所有空白字符(制表符,空格,换行符等)。 然后,将其替换为""(空字符串字面值)。