dim a
a="20,10|21,11|23,15|28,58……"
dim b
b=split(a,"|")
dim c
dim i
dim d
dim e
d=""
e=""
for i=Lbound(b) to Ubound(b)
c=split(b(i),",")
d=d & c(0) & ","
e=e & c(1) & ","
next
dim m
dim n
m=left(d,len(d)-1)'第一个数组
n=left(e,len(e)-1)
str=split("20,10|21,11|23,15|28,58","|")
a=""
b=""
For i = 0 to UBound(str)
child_str=split(str(i),",")
a=a&child_str(0)&","
b=b&child_str(1)&","
next
response.write left(a,len(a)-1) &"<br>"
response.write left(b,len(b)-1)
dim str,i,child_str,a(),b()
str="20,10|21,11|23,15|28,58"
str=split(str,"|")
For i = 0 to UBound(str)
child_str=split(str(i),",")
a(i)=child_str(0)
b(i)=child_str(1)
next
a=join(a,",")
b=join(b,",")
response.write(a)
response.write(b)
dim a
a="20,10|21,11|23,15|28,58……"
dim b
b=split(a,"|")
dim c
dim i
dim str1
dim str2
str1=""
str2=""
for i=Lbound(b) to Ubound(b)
c=split(b(i),",")
str1=str1 & c(0) & ","
str2=str2 & c(1) & ","
next
dim m
dim n
m=left(str1,len(str1)-1)'第一个数组
n=left(str2,len(str2)-1)'第二个数组