json.toStrProp: Difference between revisions
Jump to navigation
Jump to search
m (Fixing wikilink) |
No edit summary |
||
Line 2: | Line 2: | ||
|name=json.toStrProp | |name=json.toStrProp | ||
|version=1.3b49 | |version=1.3b49 | ||
|trusted=false | |||
|description= | |description= | ||
Creates a [[Macros:string property list|string list]] from a [[JSON Object|json object]] | Creates a [[Macros:string property list|string list]] from a [[JSON Object|json object]] or [[JSON Array|json array]] using the specified delimiter in the result. If a delimiter is not provided then the default value of ';' is used. | ||
|usage= | |usage= | ||
Line 10: | Line 11: | ||
[h: strProp = json.toStrProp(jobj, delim)] | [h: strProp = json.toStrProp(jobj, delim)] | ||
</source> | </source> | ||
'''Parameters''' | |||
{{param|jobj|JSON Object or Array}} | |||
{{param|delim|Delimiter used in source.}} | |||
|example= | |example= | ||
Line 18: | Line 23: | ||
Returns | Returns | ||
<source lang="mtmacro"> | |||
a=1;c=12;b=44 | a=1;c=12;b=44 | ||
0=a;1=1;2=g;3=4 | 0=a;1=1;2=g;3=4 | ||
</source> | |||
}} | }} | ||
[[Category:JSON Function]] | [[Category:JSON Function]] [[Category:String_Property_List_Function]] |
Revision as of 14:54, 8 January 2020
json.toStrProp() Function
• Introduced in version 1.3b49
Creates a string list from a json object or json array using the specified delimiter in the result. If a delimiter is not provided then the default value of ';' is used.
Usage
[h: strProp = json.toStrProp(jobj)]
[h: strProp = json.toStrProp(jobj, delim)]
Parameters
jobj
- JSON Object or Arraydelim
- Delimiter used in source.
Example
[h:a=json.fromStrProp("a=1;b=44;c=12")] [r:json.toStrProp(a)]
[h:a=json.fromList("a,1,g,4")][r:json.toStrProp(a)]
Returns
a=1;c=12;b=44
0=a;1=1;2=g;3=4