gpt4 book ai didi

Java分割字符串正则表达式: Leading whitespace

转载 作者:行者123 更新时间:2023-12-02 05:54:57 27 4
gpt4 key购买 nike

我知道之前已经有人问过如何用前导空格分割字符串的问题,例如:

String str = " I want to be  split \t!"
String[] sarr = str.split("\\s+");
for(String s : sarr) System.out.println("'" + s + "'");

产生结果:

'' //leading white space
'I'
'want'
'to'
'be'
'split'
'!'

解决这个问题的方法是在分割之前使用 str.trim() 。

我想知道的是为什么 split() 不能跳过前导空白,但可以在字符串的中间/末尾执行此操作。

最佳答案

我认为这应该可以回答你的问题。

取自 String docs

Splits this string around matches of the given regular expression.

This method works as if by invoking the two-argument split method with the given expression and a limit argument of zero. Trailing empty strings are therefore not included in the resulting array.

关于Java分割字符串正则表达式: Leading whitespace,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23192323/

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