Working with JSON data
The following set of functions have been implemented to access JSON data:
ibec_json_Parse | Parses a text which contains JSON data. Returns pointer to a root node of JSON tree. |
ibec_json_Free | Destroys a JSON object created with ibec_json_Parse function. |
ibec_json_SelectNode | Selects a node using its name/path/index relatively to specified JSON node. |
ibec_json_NodeType | Returns the type of the specified JSON node. |
ibec_json_GetNodeValue | Returns the value of specified JSON node. |
ibec_json_GetNodeName | Returns name of specified node. |
ibec_json_ChildCount | Returns number of child nodes for specified node. |
JSON namespace | All JSON functions and constants also available via namespace JSON. |
See JSON example
back to top of page
<< ibec_ds_Sort | IBEBlock | ibec_JsonToXML >>