Method New ( json:String )
New json parser object parsing json.
Impressum, Datenschutzerklärung
The json parser is used to translate a JSON string to json. More...
Constructors | |
---|---|
New ( json:String ) |
New json parser object parsing json. |
Methods | |
---|---|
ParseValue : JsonValue () |
Used to return the value of the root object. |
The json parser is used to translate a JSON string to json.
Method New ( json:String )
New json parser object parsing json.
Method ParseValue : JsonValue ()
Used to return the value of the root object.
Local
json
:=
New
JsonParser
(
"42"
).
ParseValue
()
Print json
.
Type
()
' prints 4 (equals to JsonValue.NUMBERTYPE)
Print json
.
IntValue
()
' prints 42