什么可能是字符串下面匹配的正则表达式
String str = "<Element>\r\n <Sub>regular</Sub></Element>";
有一个
carriage return "\r", new line character "\n" and a space after <Element>.
我的代码如下
if(str.matches("<Element>([\\s])<Sub>(.*)"))
{
System.out.println("Matches");
}