如何拆分以下包含数组的字符串

发布于 2025-01-05 07:06:34 字数 404 浏览 0 评论 0原文

要分割的字符串:java[d]program

预期输出:java and program

但得到输出:java[ and]program

我使用了以下代码:

class Test{
    public static void main(String[] args){
    String [] test;
    String text = "java[d]program";
    test=text.split("[d]");
    System.out.println(""+test[0]);
    System.out.println(""+test[1]);
}

有什么帮助吗?

String to split: java[d]program

Expected output: java and program

but got output: java[ and ]program

I used following code:

class Test{
    public static void main(String[] args){
    String [] test;
    String text = "java[d]program";
    test=text.split("[d]");
    System.out.println(""+test[0]);
    System.out.println(""+test[1]);
}

Any help?

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

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

发布评论

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

评论(3

原谅过去的我 2025-01-12 07:06:34

您应该转义 []

split("\\[d\\]");

You should escape [ and ].

split("\\[d\\]");
迷爱 2025-01-12 07:06:34

试试这个

public static void main(String[] args){ 
        String [] test; String text = "java[d]program";    
        test=text.split("\\[d\\]");    
        System.out.println(""+test[0]);    
        System.out.println(""+test[1]); 
    }

输出:

java
program

Try this

public static void main(String[] args){ 
        String [] test; String text = "java[d]program";    
        test=text.split("\\[d\\]");    
        System.out.println(""+test[0]);    
        System.out.println(""+test[1]); 
    }

Output:

java
program
谁许谁一生繁华 2025-01-12 07:06:34

String.split() 使用正则表达式,所以它应该是这样的(如果我明白你想要什么):

test = text.split("\\[.*\\]");

String.split() uses regular expressions so it should be something like this (if I understand what you want):

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