Reputation: 73
How would I parse this multi-level JSON to get title?
{"query":{"search":[{"ns":0,"title":"Getfenv"}]}}
Upvotes: 0
Views: 40
Reputation: 801
obj.query.search[0].title
you can try out this
Upvotes: 1