cJSONCore

<< Click to Display Table of Contents >>

Navigation:  ThinBASIC Core Language > Data Structures >

cJSONCore

 

Description

 

cJSONCore class is a basic JSON data parser that can scan JSON elements sequentially.

 

It can be used to handle little JSON files (up to 1Mb) in an easy way without the need to specify additional external modules.

For much faster and complete JSON file parsing, handling ... please consider CJSON module specifically developed for this purpose.

 

References

 

1.The JavaScript Object Notation (JSON) Data Interchange Format RFC 8259

 

Additional information

 

 

Important note about cJSONCore data structure

 

1. cJSONCore data structure is based on Rod Macia source code released public domain in Power Basic forum
 
Original source code can be found at the following link:
https://forum.powerbasic.com/forum/user-to-user-discussions/source-code/806963-json-parser-functions
 
Original source code has been optimized to work with thinBasic but main idea is from Rod Macia