How to match regex over multiple lines [duplicate]

2019-01-27 00:46发布

This question already has an answer here:

I have a body of text and I am trying to find a character sequence within it. String.contains() will not work so Im trying to use String.matches method and a regular expression. My current regex isn't working. Here are my attempts:

"1stline\r\n2ndline".matches("(?im)^1stline$"); 
// returns false; I expect true

"1stline\r\n2ndline".matches("(?im)^1stline$") 
// returns false

"1stline\r\n2ndline\r\n3rdline".matches("(?im)^2ndline$")   

"1stline\n2ndline\n3rdline".matches("(?im)^2ndline$")

"1stline\n2ndline\n3rdline".matches("(?id)^2ndline$")

How should i format my regex so that it returns true?

3条回答
叼着烟拽天下
2楼-- · 2019-01-27 01:22

You need to use the s flag (not the m flag).

It's called the DOTALL option.

This works for me:

  String input = "1stline\n2ndLINE\n3rdline";
  boolean b = input.matches("(?is).*2ndline.*");

I found it here.

Note you must use .* before and after the regex if you want to use String.matches().

That's because String.matches() attempts to match the entire string with the pattern.

(.* means zero or more of any character when used in a regex)


Another approach, found here:

  String input = "1stline\n2ndLINE\n3rdline";
  Pattern p = Pattern.compile("(?i)2ndline", Pattern.DOTALL);
  Matcher m = p.matcher(input);
  boolean b = m.find();
  print("match found: " + b);

I found it by googling "java regex multiline" and clicking the first result.

(it's almost as if that answer was written just for you...)

There's a ton of info about patterns and regexes here.


If you want to match only if 2ndline appears at the beginning of a line, do this:

   boolean b = input.matches("(?is).*\\n2ndline.*");

Or this:

 Pattern p = Pattern.compile("(?i)\\n2ndline", Pattern.DOTALL);
查看更多
来,给爷笑一个
3楼-- · 2019-01-27 01:25

You could try using contains

It would be something like

yourString.contains("(.+\\r\\n)+(.)+(wordYouAreLookingFor)");

btw, using same example that @wdziemia, I'm not expert at REGEX either... :)

hope it helps.

查看更多
啃猪蹄的小仙女
4楼-- · 2019-01-27 01:41

If you are trying to see if "1stLine" exists within the string "1stline\r\n2ndline\r\n3rdLine" then you could just do the following:

String test1= "1stline\r\n2ndline\r\n3rdLine";
System.out.println(test1.contains("1stline"));
//returns true

----------------------------EDIT----------------------------

So for some reason .contains wont work in your test. Here is the regular expression to find the string "1stline"

    String regex = "([\\r\\n]|.)*(1stline)+([\\r\\n]|.)*";

    String test1= "1stline\r\n2ndline\r\n3rdLine";
    System.out.println(test1.contains("1stline"));
    //returns true

    String test2 = "1stline\r\n2ndline\r\n3rdLine";
    System.out.println(test2.matches(regex));
    //returns true

    String test3 = "1stline\r\n";
    System.out.println(test3.matches(regex));
    //returns true

    String test4 = "1stline";
    System.out.println(test4.matches(regex));
    //returns true

    String test5 = "\r\n2ndline\r\n3rdLine";
    System.out.println(test5.matches(regex));
    //returns false

    String test6 = "n2ndlinen2ndlinen2ndline\r\n2ndline\r\n4rdLine";
    System.out.println(test6.matches(regex));
    //returns false
查看更多
登录 后发表回答