Looking for assistance in converting JSON data into a multi-dimensional array. The information is currently stored in a JSON file.
Below is the JSON data structure:
{
"table": {
"columnNames": ["column1", "column2", "column3", "column4"],
"columnTypes": ["String", "String", "String", "String"],
"rows": [
["data00", "data01", "data02", "data03"],
["data10", "data11", "data12", "data13"],
["data20", "data21", "data22", "data23"],
["data30", "data31", "data32", "data33"]
]
}
}
In order to achieve this, an array of arrays needs to be created from the objects within the "rows" section.
If anyone could provide guidance on this task, it would be greatly appreciated!
Thank you in advance!!!