如何匹配具有换行符的字符串中的模式?例如
requisition({"title":"my json",
"items" : [{ "A": "a",
"B": "b"}
]
})
我只想抓住这个
{"title":"my json",
"items" : [{ "A": "a",
"B": "b"}
]
}
我尝试了类似的东西
String pattern = ".*(\\{.*\\}).*";
Pattern r = Pattern.compile(pattern, Pattern.DOTALL);
但没有成功。有什么建议吗?
只是为了更清楚。这是我的输入