json.toList: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 5: | Line 5: | ||
'''Introduced in MapTool 1.3b49''' | '''Introduced in MapTool 1.3b49''' | ||
Creates a [[Macros:string list|string list]] from a [[Macros:json array|json array]]. | Creates a [[Macros:string list|string list]] from a [[Macros:json array|json array]]. If the delimiter is not specified then the default value of ',' is used. | ||
===Usage=== | ===Usage=== | ||
<source lang="mtmacro" line> | <source lang="mtmacro" line> | ||
[h: jarr = json.toList(jarr)] | [h: jarr = json.toList(jarr)] | ||
[h: jarr = json.toList(jarr, delim)] | |||
</source> | </source> | ||
Revision as of 10:20, 24 December 2008
Function json.toList
Introduced in MapTool 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