gpt4 book ai didi

Java Regex - 减少字符串中的空格

转载 作者:搜寻专家 更新时间:2023-10-30 21:13:24 26 4
gpt4 key购买 nike

我没有时间思考正则表达式,我需要一个快速的答案。平台是 Java。

我需要字符串

"Some text   with  spaces"

...转换为

"Some text with spaces"

即将 2 个或多个连续空格更改为 1 个空格。

最佳答案

String a = "Some    text  with   spaces";
String b = a.replaceAll("\\s+", " ");
assert b.equals("Some text with spaces");

关于Java Regex - 减少字符串中的空格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/575500/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com