如何使用Java分割字符串?

发布于 2024-12-18 01:07:12 字数 347 浏览 0 评论 0原文

分割一个看起来像这样的字符串

<a><b><c></c></b></a>

我尝试使用下面的代码用java

String[] s =input.split("[<>]+");
System.out.println(Arrays.toString(s));

,这是输出

[, a, b, c, /c, /b, /a]

我不知道我应该做什么来摆脱结果数组开头的这个空字符串。
有什么建议吗?

i tried to split a string looks like this

<a><b><c></c></b></a>

with java using the following code

String[] s =input.split("[<>]+");
System.out.println(Arrays.toString(s));

and this was the output

[, a, b, c, /c, /b, /a]

i don't know what should i do to get rid of this empty string in the beginning of the resulting array.

any suggestions ?

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

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

发布评论

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

评论(5

世界如花海般美丽 2024-12-25 01:07:12

还有一种使用正则表达式匹配的替代方法:

String input = "<a><b><c></c></b></a>";

Pattern p = Pattern.compile("<(.+?)>");
Matcher m = p.matcher(input);

ArrayList<String> s = new ArrayList<String>();

while(m.find())
    s.add(m.group(1));

System.out.println(s.toString());

输出:
[a、b、c、/c、/b、/a]

There is an alternative method using regular expression matching:

String input = "<a><b><c></c></b></a>";

Pattern p = Pattern.compile("<(.+?)>");
Matcher m = p.matcher(input);

ArrayList<String> s = new ArrayList<String>();

while(m.find())
    s.add(m.group(1));

System.out.println(s.toString());

Output:
[a, b, c, /c, /b, /a]

把昨日还给我 2024-12-25 01:07:12

正常情况下是这样的如果要删除第一个空元素,请使用 next:

    String input = "<a><b><c></c></b></a>";
    String[] strs = input.split("[<>]+");
    String[] s =Arrays.copyOfRange(strs, 1, strs.length);

或循环查找空元素。

It's normally. If you want to remove first empty element use next:

    String input = "<a><b><c></c></b></a>";
    String[] strs = input.split("[<>]+");
    String[] s =Arrays.copyOfRange(strs, 1, strs.length);

Or go in cycle looking for empty elements.

绝對不後悔。 2024-12-25 01:07:12

如果您准备使用 Google Guava 库,则 Splitter 有一种巧妙的方法可以使用 Splitter#omitEmptyStrings() 省略空字符串。

If you are up for using Google Guava library, then Splitter has a neat way to omit empty strings using Splitter#omitEmptyStrings().

塔塔猫 2024-12-25 01:07:12

您将需要遍历所有元素以删除空元素。

You will need to iterate through all the elements to get rid of the empty ones..

智商已欠费 2024-12-25 01:07:12

如果您确定输入格式,您可以执行以下操作:

String[] s =input.substring(1).split("[<>]+");
System.out.println(Arrays.toString(s));

If you're sure about the input format you can do:

String[] s =input.substring(1).split("[<>]+");
System.out.println(Arrays.toString(s));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文