-
1
- #1
Hi everyone!
I've rewritten the JSONFox library using the 'Recursive Descent Parsing' approach and the result was pretty cool. Now you can use it as a compiled application by issuing the following:
This new version is full compatible with the old one 1.9 specially Decode() and Encode() functions that now they are Parse() and Stringify() respectively.
A new property called 'json' was added to the _screen global object after 'Do JSONFox.app' statement.
The Stringify() function formats either an object or a string into a legible JSON string representation.
The built-in function JSONViewer() open a JSON viewer form useful for debugging purposes.
See more details on:
A team is only pieces that you exchange until you finish the work, it is efficient, it works.
I've rewritten the JSONFox library using the 'Recursive Descent Parsing' approach and the result was pretty cool. Now you can use it as a compiled application by issuing the following:
Code:
Do LocFile("JSONFox", "app")
This new version is full compatible with the old one 1.9 specially Decode() and Encode() functions that now they are Parse() and Stringify() respectively.
A new property called 'json' was added to the _screen global object after 'Do JSONFox.app' statement.
Code:
obj = _Screen.Json.Parse('{"foo": "bar"}')
?obj.foo
The Stringify() function formats either an object or a string into a legible JSON string representation.
The built-in function JSONViewer() open a JSON viewer form useful for debugging purposes.
See more details on:
A team is only pieces that you exchange until you finish the work, it is efficient, it works.