将字符串拆分为零个或多个单词的正确方法

发布于 2024-12-11 09:52:43 字数 354 浏览 0 评论 0原文

我有一个包含零个或多个空格分隔单词的字符串,需要将其拆分为单词数组。这就是我所做的。但是在后处理步骤中,我处理输入字符串不包含单词的情况,这表明我应该使用 String.split() 之外的其他方式。我应该吗?

String[] split_arguments(String arguments) {
    String[] result = arguments.split("[\t ]+");
    if (result.length == 1 && result[0].equals("")) {
        result = new String[0];
    }
    return result;
}

I have a string with zero or more whitespace-separated words, that needs to be split into an array of words. This is what I did. But the post-processing step, where I handle the case that the input string contained no words, suggests to me that I should have used some other way than String.split(). Should I?

String[] split_arguments(String arguments) {
    String[] result = arguments.split("[\t ]+");
    if (result.length == 1 && result[0].equals("")) {
        result = new String[0];
    }
    return result;
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

甲如呢乙后呢 2024-12-18 09:52:43

为什么不简单地修剪前导和尾随空白并在分割之前检查这种情况。另外,您可以简单地使用预定义的空白字符类。

String[] split_arguments(String arguments) {
    if(arguments == null) {
        return null;
    }
    String trimmedArguments = arguments.trim();
    if(trimmedArguments.length() == 0) {
        return null;
    }

    return trimmedArguments.split("\\s+");
}

Why not simply trim the leading and trailing whitespace and check for that case prior to splitting. Also, you might simply use the predefined whitespace character class.

String[] split_arguments(String arguments) {
    if(arguments == null) {
        return null;
    }
    String trimmedArguments = arguments.trim();
    if(trimmedArguments.length() == 0) {
        return null;
    }

    return trimmedArguments.split("\\s+");
}
世界和平 2024-12-18 09:52:43

您可以使用 Apache 的 StringUtils公共资源。然后,您可以使用它们提供的其中一种拆分方法,或者在使用 isNotEmpty()isNotBlank() 方法检查字符串是否不为空之前。

You could use the StringUtils from Apache Commons. You can then either use one of the split methods they provide or before make a check that the string is not empty using the isNotEmpty() or isNotBlank() methods.

森末i 2024-12-18 09:52:43

您可以使用 apache commons 中的 StringUtils.IsBlank 在分割之前检查字符串。无论哪种方式,您都必须进行检查,但在拆分之前进行检查可能更合乎逻辑。

You could use StringUtils.IsBlank from apache commons to check the string before splitting. Either way, you have to do a check, but doing a check before splitting might be more logical.

眼眸印温柔 2024-12-18 09:52:43

我建议使用 Commons Lang 的 StrTokenizer。它很简单:

return StrTokenizer(arguments).getTokentArray();

http:// commons.apache.org/lang/api-release/org/apache/commons/lang3/text/StrTokenizer.html

I suggest using the StrTokenizer from Commons Lang. It's as simple as:

return StrTokenizer(arguments).getTokentArray();

http://commons.apache.org/lang/api-release/org/apache/commons/lang3/text/StrTokenizer.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文