繁体   English   中英

多行字符串搜索

[英]Multi-line string search

假设用户提供了搜索查询输入:

word1 word2 word3

被搜索的文本如下所示:

Some text some text some text word1 \r\n (newline here)
word2      word3 some text some text some text.

有没有一种方法可以将用户的输入转换为正则表达式,并从根本上获得搜索查询开始和结束的位置的索引,而使换行符和多个空格令人沮丧?

您可以通过以下方式执行此操作:

public static String regex = "//s+" +"((" + word1 + ")|(" + word2 + ")|(" + word3 + "))//s+"

public static void printMatches(String text, String regex) {
  Pattern pattern = Pattern.compile(regex);
  Matcher matcher = pattern.matcher(text);
  // Check all occurrences
  while (matcher.find()) {
    System.out.print("Start index: " + matcher.start());
    System.out.print(" End index: " + matcher.end());
    System.out.println(" Found: " + matcher.group());
  }
}

使用DOTALL标志来匹配跨越多行的文本。

暂无
暂无

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

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