json.toList: Difference between revisions
Jump to navigation
Jump to search
Verisimilar (talk | contribs) m (Macros:Functions:json.toList moved to json.toList) |
Verisimilar (talk | contribs) m (Correcting JSON Array link.) |
||
Line 3: | Line 3: | ||
|version=1.3b49 | |version=1.3b49 | ||
|description= | |description= | ||
Creates a [[Macros:string list|string list]] from a [[ | Creates a [[Macros:string list|string list]] from a [[JSON Array]]. If the delimiter is not specified then the default value of ',' is used. | ||
|usage= | |usage= |
Revision as of 00:33, 5 April 2009
json.toList() Function
• Introduced in version 1.3b49
Creates a string list from a JSON Array. If the delimiter is not specified then the default value of ',' is used.
Usage
[h: jarr = json.toList(jarr)]
[h: jarr = json.toList(jarr, delim)]
Examples
[h:a=json.toList("a,1,g,4")][json.toList(a)]
Returns
a,1,g,4