Example usage:
mob/Login()
var/jsonStr = "{\"member_id\": \"This is it!\"}"
var/JSONP/parser = new
var/JSON/j = parser.Parse(jsonStr)
world << "Member ID? [j.Value("member_id")]"
NOTE: Still a work in progress
JSONP |
|
Easy to use JSON parser |
ID:1512491
Mar 6 2014, 10:00 pm
|
|
An easy to use JSON parser that should fully implement the JSON standards.
Example usage: mob/Login() NOTE: Still a work in progress |