I have a JSONObject that looks like this
[{"key1":1,"key2":"yyy","key3":"4"..........},
{"key1":2,"key2":"xxx","key3":"5"...........},
{"key1":3,"key2":"zzz","key3":"6"...........}]
I need to convert it into a simple 2D array and remove all the keys. Keep values only
[{1,"yyy","4",..........},
{2,"xxx","5",...........},
{3,"zzz","6",...........}]
I tried iteration and loop bu this seems to be too much hassle. Is there any drop_keys function that will do it ?