I want to parse a plain JSON array like:
{
"ns": [
[
"1364987475027",
"Alert1",
"001"
],
[
"1364987475042",
"Alert2",
"001"
],
[
"1364987475058",
"Alert4",
"001"
]
]
}
To get the array in simple arrays of string. I found many posts with JSON dictionary arrays. But in this case the JSON is not having keys for the values. Kindly help.