繁体   English   中英

正则表达式以匹配字符串的第一个匹配项与最后一个匹配的字符串

[英]Regex to match first occurrence of a string is matching the last

我有以下清单

Acid
stuff
goo
nasty
Probable
Acid
more stuff
Probable
Acid 
fff
ggg
Probable

我想匹配“酸”和“可能”之间的所有内容。 但是我的正则表达式仅匹配最后一个匹配项( Acid,fff,ggg,Probable )而不匹配第一个匹配项( Acid,stuff, goo, nasty, Probable

调用类:

    public static void main(String[] args) throws IOException {


       PDFManager pdfManager = new PDFManager();
       pdfManager.setFilePath("MyFile.pdf");
       String s=pdfManager.ToText();


       if(s.contains("Thresholds")){

              BravoaltDoc_ExtractionNonDays Sum = new BravoaltDoc_ExtractionNonDays(s);
              Sum.ExtractSumNew(s);


   public class BravoaltDoc_ExtractionNonDays {
    String doc;
}}

    ArrayList<String> Day_arr = new ArrayList<String>();
    ArrayList<List<String>> Day_table2d = new ArrayList<List<String>>();
    String [] seTab3Landmarks=null;

    public BravoaltDoc_ExtractionNonDays(String doc) {
        this.doc=doc;
    }

    public String ExtractSumNew(String doc) {
        Pattern Tab3Landmarks_pattern = Pattern.compile("Acid?(.*?)Probable",Pattern.DOTALL);
        Matcher matcherTab3Landmarks_pattern = Tab3Landmarks_pattern.matcher(doc);
        while (matcherTab3Landmarks_pattern.find()) {
            doc=matcherTab3Landmarks_pattern.group(1);
            seTab3Landmarks=matcherTab3Landmarks_pattern.group(1).split("\\n|\\r");
        }
        for (String n:seTab3Landmarks){
            System.out.println(n);
        }
return docSlim;

    }

}

描述

此正则表达式将执行以下操作:

  • 将以Acid开头的子字符串匹配为Probable
  • 需要AcidProbable在自己的行。 如果它们嵌入在像gooProbablegoo这样的字符串中间, gooProbablegoo它们将不匹配

对于此正则表达式,我使用了Case Insenstive标志,而Dot匹配了新行Flag。

(?:\r|\n|\A)\s*Acid\s*?[\r\n].*?[\r\n]\s*Probable\s*?(?:\r|\n|\Z)

正则表达式可视化

示范文本

注意:第三行中的困难边缘情况。

Acid
stuff
gooProbablegoo
nasty
Probable
Acid
more stuff
Probable
Acid
fff
ggg
Probable

火柴

[0][0] = Acid
stuff
gooProbablegoo
nasty
Probable

[1][0] = 
Acid
more stuff
Probable

[2][0] = 
Acid
fff
ggg
Probable

讲解

NODE                     EXPLANATION
----------------------------------------------------------------------
  (?:                      group, but do not capture:
----------------------------------------------------------------------
    \r                       '\r' (carriage return)
----------------------------------------------------------------------
   |                        OR
----------------------------------------------------------------------
    \n                       '\n' (newline)
----------------------------------------------------------------------
   |                        OR
----------------------------------------------------------------------
    \A                       the beginning of the string
----------------------------------------------------------------------
  )                        end of grouping
----------------------------------------------------------------------
  \s*                      whitespace (\n, \r, \t, \f, and " ") (0 or
                           more times (matching the most amount
                           possible))
----------------------------------------------------------------------
  Acid                     'Acid'
----------------------------------------------------------------------
  \s*?                     whitespace (\n, \r, \t, \f, and " ") (0 or
                           more times (matching the least amount
                           possible))
----------------------------------------------------------------------
  [\r\n]                   any character of: '\r' (carriage return),
                           '\n' (newline)
----------------------------------------------------------------------
  .*?                      any character (0 or more times (matching
                           the least amount possible))
----------------------------------------------------------------------
  [\r\n]                   any character of: '\r' (carriage return),
                           '\n' (newline)
----------------------------------------------------------------------
  \s*                      whitespace (\n, \r, \t, \f, and " ") (0 or
                           more times (matching the most amount
                           possible))
----------------------------------------------------------------------
  Probable                 'Probable'
----------------------------------------------------------------------
  \s*?                     whitespace (\n, \r, \t, \f, and " ") (0 or
                           more times (matching the least amount
                           possible))
----------------------------------------------------------------------
  (?:                      group, but do not capture:
----------------------------------------------------------------------
    \r                       '\r' (carriage return)
----------------------------------------------------------------------
   |                        OR
----------------------------------------------------------------------
    \n                       '\n' (newline)
----------------------------------------------------------------------
   |                        OR
----------------------------------------------------------------------
    \Z                       before an optional \n, and the end of
                             the string
----------------------------------------------------------------------
  )                        end of grouping

您的代码正确找到所有匹配项。 但是,由于每个查找都重新分配了seTab3Landmarks ,因此您只会在末尾打印出最后一个匹配项。

如果只希望第一个匹配,则应使用“ if”块而不是“ while”块(可找到所有匹配项)。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM