04-10-2012, 12:03 AM
Hi,
I have a question regarding array of arrays.
I have three arrays that were created by spliting a string:
sText0 = "0;3;6;9"
sText1 = "1;4;7;10"
sText2 = "2;5;8;11"
arr0=Split(sText0,";")
arr1=Split(sText1,";")
arr2=Split(sText2,";")
What can I do to make these three arrays to become ONE array?
I am trying this but with no success:
Dim arrTest
arrTest(0)=arr0
arrTest(1)=arr1
arrTest(2)=arr2
Can you help me, please?
Thanks,
Arena
I have a question regarding array of arrays.
I have three arrays that were created by spliting a string:
sText0 = "0;3;6;9"
sText1 = "1;4;7;10"
sText2 = "2;5;8;11"
arr0=Split(sText0,";")
arr1=Split(sText1,";")
arr2=Split(sText2,";")
What can I do to make these three arrays to become ONE array?
I am trying this but with no success:
Dim arrTest
arrTest(0)=arr0
arrTest(1)=arr1
arrTest(2)=arr2
Can you help me, please?
Thanks,
Arena