Please enable JavaScript to view this site.

thinBasic Help Manual

* * HELP & MANUAL PREMIUM PACK 4 DEMO VERSION * *

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 count of items for given JSON path.

 

Syntax

 

count = <CCJson>.Path.Count(pathSpecification)

 

Returns

 

Number

 

Parameters

 

Name

Type

Optional

Meaning

pathSpecification

Tokens

No

Path specification further explained in CJSon path specification topic.

 

Remarks

 

If the path is array, it will return the amount of items in the array.

 

If the path is object, it will return the number of keys in given object.

 

Restrictions

 

See also

 

.Path.Name

.Path.Ptr

.Path.Type

.Path.Type$

.Path.Value

 

Examples

 

uses "cjson""console"

 

dim json as new CCJson                                        ' Create an empty CCJson object

 

json.Parse("[{""name"": ""Eros""}, {""name"": ""Roberto""}]"' Parse valid JSON string

 

for as long = 1 to json.Path.Count(.)                       ' Number of items in root JSON array   

  printl n

  printl "Path ptr: " + json.Path.Ptr((n)."name")             ' Pointer to n-th name item

  printl "Value:    " + json.Path.Value((n)."name")           ' Value of n-th name item

  printl "Type:     " + json.Path.Type((n)."name")            ' Numeric type of n-th name item

  printl "Type$:    " + json.Path.Type$((n)."name")           ' Text for of type of n-th name item

  printl

next

 

waitkey

Created with Help+Manual 8 and styled with Premium Pack Version 4 © by EC Software