Hi sir,
my JSON is as follows :
{
"Data":[
{
"id":"1",
"Name":"Sachin"
},
{
"id":"2",
"Name":"Rahul"
},
{
"id":"3",
"Name":"Sovrav"
}
]
}
Now i want to filter out only array from that JSON and store them in a variable like this :
[
{
"id":"1",
"Name":"Sachin"
},
{
"id":"2",
"Name":"Rahul"
},
{
"id":"3",
"Name":"Sovrav"
}
]
please help me....