zoukankan      html  css  js  c++  java
  • JAVA 正则表达式

            String content = "1.案件管辖问题{【标签1】默认内容1}测试测试测试测试测{【标签2】默认内容2}试测试测试测试测试测试测试测试测试测试测试";
            String pattern = "\{(【.*?】)([^,,].*?)\}";
    
            Pattern p = Pattern.compile(pattern);
            Matcher matcher = p.matcher(content);
    
            while (matcher.find()) {
                String group = matcher.group();
                int start = matcher.start();
                int end = matcher.end();
                System.out.println(group + "," + start + "," + end + "
    ===
    ");
            }
    
            String content1 = "{【标签】默认内容}";
            String pattern1 = "\{【([\s\S]*)】([\s\S]*)\}";
            Pattern p1 = Pattern.compile(pattern1);
            Matcher matcher1 = p1.matcher(content1);
            while (matcher1.find()) {
                int  matchCount = matcher1.groupCount();
                while (matchCount >= 0) {
                    String group = matcher1.group(matchCount);
                    int start1 = matcher1.start(matchCount);
                    int end1 = matcher1.end(matchCount);
                    System.out.println(group + "," + start1 + "," + end1);
                    matchCount--;
                }
            }
    
  • 相关阅读:
    iOS
    iOS
    iOS
    iOS
    iOS
    iOS
    iOS
    iOS
    iOS
    iOS
  • 原文地址:https://www.cnblogs.com/hfultrastrong/p/9139073.html
Copyright © 2011-2022 走看看