使用正则表达式匹配多行文本我正在尝试使用java来匹配多行文本。当我使用Pattern类的Pattern.MULTILINE修饰符,我可以匹配,但我不能这样做。(?m).相同的模式(?m)和使用String.matches似乎不起作用。我肯定我错过了什么,但不知道是什么。我不太擅长正则表达式。这就是我试过的String test = "User Comments: This is \t a\ta \n test \n\n message \n";String pattern1 = "User Comments: (\\W)*(\\S)*";Pattern p = Pattern.compile(pattern1, Pattern.MULTILINE);System.out.println(p.matcher(test).find()); //trueString pattern2 = "(?m)User Comments: (\\W)*(\\S)*";System.out.println(test.matches(pattern2)); //false - why?
3 回答
三国纷争
TA贡献1804条经验 获得超7个赞
str.matches(regex)
Pattern.matches(regex, str)
true
当且仅当 全输入序列与匹配器的模式匹配
matcher.find()
true
当且仅当 子序列的输入序列与匹配器的模式相匹配。
String test = "User Comments: This is \t a\ta \ntest\n\n message \n";String pattern1 = "User Comments: [\\s\\S]*^test$[\\s\\S]*";Pattern p = Pattern.compile(pattern1, Pattern.MULTILINE);System.out.println(p.matcher(test).find()); //trueString pattern2 = "(?m)User Comments: [\\s\\S]*^test$[\\s\\S]*";System.out.println(test.matches(pattern2)); //true
(\\W)*(\\S)*
*
User Comments:
\\W
[^a-zA-Z0-9_]
T
添加回答
举报
0/150
提交
取消