My JSON string is as follows,
{
"Data":[
{
"id":"1",
"Name":"Sachin"
},
{
"id":"2",
"Name":"Rahul"
},
{
"id":"3",
"Name":"Sovrav"
}
]
}
Now, I want to filter only array from that JSON string and store them in another variable the result should be like this
[
{
"id":"1",
"Name":"Sachin"
},
{
"id":"2",
"Name":"Rahul"
},
{
"id":"3",
"Name":"Sovrav"
}
]
Please help me