asp下去除数组中重复项的方法(2) 日期:2020-05-13 栏目:程序人生 浏览:次 for i = lbound(A) to ubound(A) if A(i)<>"" then if i<>lbound(A) then str = str + "," end if str = str & A(i) end if next b = split(str,",")