How do you split an array in ASP?

Airam

New member
Hi,

I am trying to split an already split array further - for example if we have the following array:

A(0) = a,b
A(1) = c,d
A(2) = e,f

I would like to split A(0) into B(0) = c and B(1) = d

Is this possible? How can this be done?

I have tried the following:

First = a,b c,d e,f
A = Split(First," ") This first part works fine
B = Split(A(0),",")

I have also tried
First = a,b c,d e,f
A = Split(First," ")
C = A(0)
B = Split(C, ",")

none of the above worked. Any other ideas?

Thanks in advance :D
 
Back
Top