Yesterday was first day when i met JSON and most of example that i find was where JSON have format like
{ "key1": "value1", "key2": "value2", ... }
but i have json string:
{"items":[[24,68,216,34006,32224],[68,177,277,140,2130], |...skip big amount of data....| ,[79606,8500392,0,0,14]],"updated":1475686082000,"columns":["id","buy","sell","supply","demand"]}
I trying to figure out how to read this and get specific amount of data. As example i need to get number in column "buy" and "sell" of specific IDs.
[ ]is considered an array. So the"items"field is an array containing arrays