I have a large amount of nested data formatted in JSON.
I would like to select for a single element:
{"data": [ {"id": "123456","from": {"name": "Jason Wade","id": "654321"},"message": "http://www.youtube.com/watch?v=ZfXHAqBRIEk" ...
How do I efficiently select for a single element, say "message"?
Is there a simple recommended method for this? Say convert it to an array, or something?
- Could you point me to some reading for parsing JSON?
Thanks!