I have a packet and I need to split it so that I can extract information from it. The packet is in string format and looks like this:
{"S.No":"9","data":[{"id":"ID1","value":" 0.34"},{"id":"ID2","value":" 2.92"},{"id":"ID3","value":" 2.92"}]}
From the above packet I need to extract the values of the id
like for ID1
value 0.34
How can I extract all the values.
Thanks