Hi all I have a simple problem with string. I want to split string, such as:
dim s as string
dim k(3) as string
s="aa1,bv1,cc1, dt1"
i want to split the value in k,
k(0)=aa1
k(1)=bv1
k(2)=cc1
k(3)=dt1
Pls give me any easy idea to solve it, thx advance
dim s as string
dim k(3) as string
s="aa1,bv1,cc1, dt1"
i want to split the value in k,
k(0)=aa1
k(1)=bv1
k(2)=cc1
k(3)=dt1
Pls give me any easy idea to solve it, thx advance
Comment