gpt4 book ai didi

java - 删除空格的正则表达式

转载 作者:行者123 更新时间:2023-11-29 06:24:00 25 4
gpt4 key购买 nike

我需要一种方法来仅删除字符串中找到的第一个空格,然后将字符串放入数组中。例如

hello there. Hey.

我希望它像 [hello][there.嘿]。我试过

String [] s = str.split(" ")

这样自然会删除所有空格并创建多个字符串。我只需要 2。你能告诉我该怎么做吗? Ether 通过正则表达式或其他方式。

最佳答案

String [] s = str.split ("", 2); 应该可以解决问题,文档 here .

您可能还想考虑使用 \s+ 作为正则表达式 - 它可能会更智能地拆分字符串。

关于java - 删除空格的正则表达式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6138502/

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