I have three strings. Following the value of String a;:
{"a":"value","b":"value"}
And the value of String b;:
[{"a":"value","b":"value"},{"c":"value","d":"value"}]
And the value of String c;:
[[{"a":"value","b":"value"},{"c":"value","d":"value"}],[{"e":"value2","f":"value"},{"g":"value2","h":"value"}]]
How to get the value of a of String a;, the value of a and c of String b; and a, d, f and h of String c; through JSON without use libraries beyond those already available?