Java正则表达式嵌套

时间:2012-06-14 08:32:29

标签: java regex

我在JAVA中使用正则表达式有很大的问题(花3天!!!)。 这是我的输入字符串:

#sfondo: [#nome: 0, #imga: 0],#111: 222, #p: [#ciccio:aaa, #caio: bbb]

我需要将此字符串解析为数组树,必须匹配如下:

group: #sfondo: [#nome: 0, #imga: 0]
group: #111: 222
group: #p: [#ciccio:aaa, #caio: bbb]

使用或者使用嵌套括号

我试过这个:

"#(\\w+):(.*?[^,\]\[]+.*?),?"

但每个元素的这个组与","分开。也在括号内

2 个答案:

答案 0 :(得分:3)

试试这个:

import java.util.regex.*;

class Untitled {
  public static void main(String[] args) {
    String input = "#sfondo: [#nome: 0, #imga: 0],#111: 222, #p: [#ciccio:aaa, #caio: bbb]";
    String regex = "(#[^,\\[\\]]+(?:\\[.*?\\]+,?)?)";
    Pattern pattern = Pattern.compile(regex);
    Matcher matcher = pattern.matcher(input);

    while (matcher.find()) {
      System.out.println("group: " + matcher.group());
    }
  }
}

答案 1 :(得分:0)

这似乎适用于您的示例:

    String input = "#sfondo: [#nome: 0, #imga: 0],#111: 222, #p: [#ciccio:aaa, #caio: bbb]";
    String regex = "#\\w+: (\\[[^\\]]*\\]|[^\\[]+)(,|$)";
    Pattern p = Pattern.compile(regex);
    Matcher matcher = p.matcher(input);
    List<String> matches = new ArrayList<String>();
    while (matcher.find()) {
        String group = matcher.group();
        matches.add(group.replace(",", ""));
    }

编辑:
这仅适用于嵌套深度为1的深度。使用正则表达式无法处理任意深度的嵌套结构。有关详细说明,请参阅this答案。