I have a string in the format like this
[{name:"abc",test:"123",jack:{tret:"abc",cold:"yes"},killer:"yes"},{name:"pqr",test:"456",jack:{tret:"hg",cold:"No"},killer:"No"}]
I know that this is an array of JSON
objects.How do I convert this so?
As of now i am just using split and removing all the commas and other things from the string and storing in an array.Is there any better way to do so?