用于 正则表达式的 JavaAPI 声明 \s
将匹配空格。
Pattern whitespace = Pattern.compile("\\s\\s");
matcher = whitespace.matcher(modLine);
while (matcher.find()) matcher.replaceAll(" ");
这样做的目的是用一个空格替换两个连续空格的所有实例。然而,这实际上并不奏效。
Am I having a grave misunderstanding of regexes or the term "whitespace"?