Java 在第三个逗号上分割字符串

发布于 2024-12-06 20:18:09 字数 245 浏览 0 评论 0原文

我有一个字符串需要分成 2 个。我想通过在第三个逗号处拆分来完成此操作。

我该怎么做?

编辑

示例字符串是:

from:09/26/2011,type:all,to:09/26/2011,field1:emp_id,option1:=,text:1234

该字符串将保持相同的格式 - 我希望字段之前的所有内容都在字符串中。

I have a string that I need to be split into 2. I want to do this by splitting at exactly the third comma.

How do I do this?

Edit

A sample string is :

from:09/26/2011,type:all,to:09/26/2011,field1:emp_id,option1:=,text:1234

The string will keep the same format - I want everything before field in a string.

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

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

发布评论

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

评论(3

野稚 2024-12-13 20:18:09

如果您只是对在第三个逗号的索引处拆分字符串感兴趣,我可能会这样做:

String s = "from:09/26/2011,type:all,to:09/26/2011,field1:emp_id,option1:=,text:1234";

int i = s.indexOf(',', 1 + s.indexOf(',', 1 + s.indexOf(',')));

String firstPart = s.substring(0, i);
String secondPart = s.substring(i+1);

System.out.println(firstPart);
System.out.println(secondPart);

输出:

from:09/26/2011,type:all,to:09/26/2011
field1:emp_id,option1:=,text:1234

相关问题:

If you're simply interested in splitting the string at the index of the third comma, I'd probably do something like this:

String s = "from:09/26/2011,type:all,to:09/26/2011,field1:emp_id,option1:=,text:1234";

int i = s.indexOf(',', 1 + s.indexOf(',', 1 + s.indexOf(',')));

String firstPart = s.substring(0, i);
String secondPart = s.substring(i+1);

System.out.println(firstPart);
System.out.println(secondPart);

Output:

from:09/26/2011,type:all,to:09/26/2011
field1:emp_id,option1:=,text:1234

Related question:

蓝梦月影 2024-12-13 20:18:09

一个幼稚的实现

public static String[] split(String s)
{
    int index = 0;
    for(int i = 0; i < 3; i++)
        index = s.indexOf(",", index+1);

    return new String[] {
            s.substring(0, index),
            s.substring(index+1)
    };
}

这不进行边界检查,如果没有按预期给出输入,则会抛出各种可爱的异常。给定 "ABCD,EFG,HIJK,LMNOP,QRSTU" 返回 ["ABCD,EFG,HIJK","LMNOP,QRSTU"]

a naive implementation

public static String[] split(String s)
{
    int index = 0;
    for(int i = 0; i < 3; i++)
        index = s.indexOf(",", index+1);

    return new String[] {
            s.substring(0, index),
            s.substring(index+1)
    };
}

This does no bounds checking and will throw all sorts of lovely exceptions if not given input as expected. Given "ABCD,EFG,HIJK,LMNOP,QRSTU" returns ["ABCD,EFG,HIJK","LMNOP,QRSTU"]

娇俏 2024-12-13 20:18:09

您可以使用此正则表达式:

^([^,]*,[^,]*,[^,]*),(.*)$

结果位于两个捕获(1 和 2)中,不包括第三个逗号。

You can use this regex:

^([^,]*,[^,]*,[^,]*),(.*)$

The result is then in the two captures (1 and 2), not including the third comma.

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