Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 

README.md

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'))
You can’t perform that action at this time.