2024-06-27 05:17:48
这个很简单的:
String patern = "\"code\":\"(\\d+?)\"";
Matcher matcher = Pattern.compile(patern).matcher(str);
while (matcher.find()) {
System.out.println(matcher.group(1));
}
2024-06-27 11:00:46
2024-06-27 08:08:26
2024-06-27 09:24:31
2024-06-27 07:24:36
\"code\":\"(\d+)\"