au3json
A small JSON library for AutoIt3
Based on the code from here
usage
#include "json.au3"
$sJson = '{"name":"John","age":31,"city":"New York"}'
$oJson = json_parse(json_lex($sJson))[0]
MsgBox(0, "", $oJson.Item('name'))GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upA small JSON library for AutoIt3
Based on the code from here
#include "json.au3"
$sJson = '{"name":"John","age":31,"city":"New York"}'
$oJson = json_parse(json_lex($sJson))[0]
MsgBox(0, "", $oJson.Item('name'))