Hi Guys,
I have a json like this
[{
“Result1”: 1,
“Result2”: 1,
“Result3”: 1,
“Name1”: “APPLE”,
“Name2”: “ORANGE”,
“Name3”: “BANANA”,
“Name4”: “GRAPS”,
“Columns”: [
{
“Name1”: “APPLE”,
“Name2”: “ORANGE”
},
{
“Name3”: “BANANA”,
“Name4”: “GRAPS”
},
{
“Name5”: “BANANA”,
“Name6”: “GRAPS”
}
]
}
]
here i want to split and need it as a separate text like
Result1 :1
Result2 :1
Result3 :1
Name1 :APPLE
like this inside the columns also…so how can i do this can any one help me out this.
Regards,
Saran.