How to parse JSON which consist of array of array objects?
Here is my JSON string:
I want to parse Delhi,uttar pradesh,south mumbai,karnataka,test in one array and then llly central delhi,Ghaziabad.. to another set of array?
{
"Result": "Success",
"RegionList": [
{
"Delhi": {
"Central Delhi": [
"Dwarka Nagar"
]
},
"Uttar Pradesh": {
"Ghaziabad": [
"Kalka Garhi Chowk"
]
},
"South Mumbai": {
"Mumbai": [
"Navi Mumbai"
]
},
"Karnataka": {
"bangalore": [
"Silk board"
]
},
"test": {
"test": [
"testtyt"
]
}
}
]
}