This documentation was styled with a demo skin from the Premium Pack 4 add-on for Help & Manual. The contents of the skin are encrypted and not configurable. You can only publish HM projects with this skin. You cannot edit it or change it.
This version is copyright and may only be used for local testing purposes. It may not be distributed.
Please purchase the full version of the Premium Pack to get the configurable skins and remove this notice. The package will also include the Toolbox configuration utility for Premium Pack skins.
Description
Returns value for given JSON path.
Syntax
storedValue = CJson_Path_GetValue(node, pathSpecification)
Returns
Any type, value of the last key in the specified path.
Parameters
Name |
Type |
Optional |
Meaning |
node |
CJson Ptr |
No |
Pointer to JSON root/node from which to walk the path |
pathSpecification |
Tokens |
No |
Path specification further explained in CJSon path specification topic. |
Remarks
Restrictions
See also
Examples
uses "cjson", "console"
dim pRoot as CJson Ptr
pRoot = CJson_Parse("[{""name"": ""Eros""}, {""name"": ""Roberto""}]")
for n as long = 1 to CJson_Path_GetCount(pRoot, .) ' Number of items in root JSON array
printl n
printl "Path ptr: " + CJson_Path_GetCount (pRoot, (n)."name") ' Pointer to n-th name item
printl "Value: " + CJson_Path_GetValue (pRoot, (n)."name") ' Value of n-th name item
printl "Type: " + CJson_Path_GetType (pRoot, (n)."name") ' Numeric type of n-th name item
printl "Type$: " + CJson_Path_GetTypeName(pRoot, (n)."name") ' Text for of type of n-th name item
printl
next
waitkey