2024-11-26 03:42:28
split方法虽然是用正则表达式实现的,但不能这么用。另外这个零宽断言有问题,我改了一下,不知道是不是你想要的。程序如下:
Pattern pattern = Pattern.compile("(?<=0x)\\d+|(?<=0X)\\d+");
Matcher matcher = pattern.matcher(x);
while (matcher.find()) {
System.err.println(matcher.group());
}
2024-11-26 04:48:02
可是零宽度正回顾后发断言的愈发格式的确是这样啊.....