As the title says... if I have an array containing subarrays is it possible to split the array and rename the new split arrays? I know I could simply type new_array=array[0] and so on but the problem is that the original array containing the sub arrays will vary in size.
original array...
array=[["a", "1", "2", "3"], ["b", "1", "2", "3"], ["c", "1", "2", "3"]...]
split and renamed arrays...
array1=["a", "1", "2", "3"]
array2=["b", "1", "2", "3"]
array3=["c", "1", "2", "3"]...
I hope that makes sense... thanks Frank