代码详情:
public static void main(String[] args) {
String str =",CM0111000060,CM0111000000,CM0001000000,";
Matcher mat = Pattern.compile("(?<=,)(\\S+)(?=,)").matcher(str);
while(mat.find()){
System.out.println(mat.group());
}
}
Connected to the target VM, address: '127.0.0.1:57736', transport: 'socket'
~~CM0111000060,CM0111000000,CM0001000000~~
Disconnected from the target VM, address: '127.0.0.1:57736', transport: 'socket'
Process finished with exit code 0