<%
'那你就用"@"将每行隔开,","将每列隔开:
sBody = "10.00,Chabarov,skAmur,Ufa,4.09,4.77,1.53@"_
& "12.00,dhabarov,skAmur,Ufa,4.09,3.67,1.43"
t = split(sBody,"@")
vl = ubound(t)
ReDim arrList(vl,7)
'转成二维数组
For i=0 to vl
For j=0 to 6
Response.Write split(t(i),",")(j) & ","
arrList(i,j)=split(t(i),",")(j)
Next
Response.Write "<br>"
Next