我想拆分字符串.
如果我的代码:
Question #1
value = "001#$002#$003";
strList = strsplit(value,"#$");
result: "001", "", "002", "", "003";
//if i using spliter like "$" it is ok. result: "001", "002","003";
Question #2
str2con(value,"#$");
result: "1", "2","3" missing zeros