Hello all,
I would like your help on chunking a multidimensional array, which appears to be a complex job. The array has the following structure:
name["rows"]["key1"] = some String;
name["rows"]["key2"] = some String;
name["rows"]["key3"] = some String;
name["rows"]["key4"] = some String;
name["rows"]["key5"] = some String;
...
name["rows"]["keyN"] = some String;
What I want to achieve is to have another master array containing the various chunks:
masterArray["rows"]["key1"]... etc.
It would be nice to choose how many arrays can be included in the master array.
Any thoughts around it please?
Any help will be highly appreciated!
Thank you in advance!!!