json.type: Difference between revisions
Jump to navigation
Jump to search
Verisimilar (talk | contribs) m (Macros:Functions:json.type moved to json.type) |
Verisimilar (talk | contribs) m (Correcting JSON Array link.) |
||
Line 3: | Line 3: | ||
|version=1.3b49 | |version=1.3b49 | ||
|description= | |description= | ||
Returns a string which contains the type of | Returns a string which contains the type of JSON variable that is passed in. | ||
Return values are | Return values are | ||
* ARRAY - The object is a [[ | * ARRAY - The object is a [[JSON Array]]. | ||
* OBJECT - The object is a [[Macros:json object|json object]]. | * OBJECT - The object is a [[Macros:json object|json object]]. | ||
* UNKNOWN - It is neither a [[ | * UNKNOWN - It is neither a [[JSON Array]] or [[Macros:json object|json object]]. | ||
|usage= | |usage= |
Revision as of 00:34, 5 April 2009
json.type() Function
• Introduced in version 1.3b49
Returns a string which contains the type of JSON variable that is passed in.
Return values are
- ARRAY - The object is a JSON Array.
- OBJECT - The object is a json object.
- UNKNOWN - It is neither a JSON Array or json object.
Usage
[h: jarr = json.type(val)]
Examples
[h:a=json.fromStrProp("a=1;b=44;c=12")] [r:json.type(a)]
[h:a=json.fromList("a,1,g,4")][r:json.type(a)]
[r:json.type("some thing or other")]
Returns
OBJECT ARRAYUNKNOWN