gpt4 book ai didi

java - 如何使用正则表达式根据模式拆分字符串

转载 作者:塔克拉玛干 更新时间:2023-11-02 07:50:38 24 4
gpt4 key购买 nike

我无法根据正则表达式拆分字符串。

String str = "1=(1-2,3-4),2=2,3=3,4=4";
Pattern commaPattern = Pattern.compile("\\([0-9-]+,[0-9-]+\\)|(,)") ;
String[] arr = commaPattern.split(str);
for (String s : arr)
{
System.out.println(s);
}

预期输出,

1=(1-2,3-4)     
2=2
3=3
4=4

实际输出,

1=

2=2
3=3
4=4

最佳答案

此正则表达式将根据需要拆分

,(?![^()]*\\))
------------
|->split with , only if it is not within ()

关于java - 如何使用正则表达式根据模式拆分字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15699353/

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