首先把多个空格替换为一个空格,然后在split:
a="11 22 333 4444"while instr(a," ") a = Replace(a, " ", " ")wendarr=split(a," ")