Bootstrap

Java【有与无】【问题】split保留后面空值

去除后面的空值

String test = "$$$$";
test.split("\\$");

保留后面的空值

String test = "$$$$";
test.split("\\$", -1);

 

;