假设我有如下 json 格式的字符串结果。
{ "errorcode": 0, "message": "Done", "login": [ { "session_timeout": "1800", "token": "1370907977", "sessionid": "##F7A7E49F7FCFF35D3F821201CBF2F7CB5937E4AC99BF2AF74B508A1C8B3F", "username": "" } ] }
如何从中获取哈希表,
hash[errorcode] = 0;
hash[message] = Done;
PS:不使用任何额外的模块并使用简单的字符串函数。