I need some help getting started. I have one array storing several arrays (in this case, lets say 3, this may be a lot more or less):
mainarray {arr, arr, arr}
All the arrays within the mainarray have the same amount of values, but this may also change to fewer or less Lets say I have following arrays:
mainarray {
arr{"1","2","3"};
arr{"One","Two","Three"};
arr{"Red","Blue","Yellow"};
}
Everytime I try to make this Object[][] the sorting comes out like this:
Object {{"1","2","3"}, {"One","Two","Three"}, {"Red","Blue","Yellow"}};
Here comes my problem: Is there a way of making this arrays into an Object[][], but with this sorting?
Object {{"1","One","Red"}, {"2","Two","Blue"}, {"3","Three","Yellow"}};
Thanks in advance!