json.append: Difference between revisions
Jump to navigation
Jump to search
m (Conversion script moved page json.append to Json.append without leaving a redirect: Converting page title to first-letter uppercase) |
No edit summary |
||
(2 intermediate revisions by 2 users not shown) | |||
Line 6: | Line 6: | ||
|usage= | |usage= | ||
< | <syntaxhighlight lang="mtmacro" line> | ||
[h: jarr = json.append(jarr, value, ...)] | [h: jarr = json.append(jarr, value, ...)] | ||
</ | </syntaxhighlight> | ||
|example= | |example= | ||
Create a JSON array from a string list and then append an additional value. | Create a JSON array from a string list and then append an additional value. | ||
< | <syntaxhighlight lang="mtmacro" line> | ||
[h:a=json.fromList("a,1,g,4")] | [h:a=json.fromList("a,1,g,4")] | ||
[r: json.append(a, 55)] | [r: json.append(a, 55)] | ||
</ | </syntaxhighlight> | ||
Returns | Returns | ||
< | <syntaxhighlight lang="javascript"> | ||
["a",1,"g",4,55] | ["a",1,"g",4,55] | ||
</ | </syntaxhighlight> | ||
Create a JSON array directly with append. | Create a JSON array directly with append. | ||
< | <syntaxhighlight lang="mtmacro" line> | ||
[r: json.append("", 1, 5, 8, 33)] | [r: json.append("", 1, 5, 8, 33)] | ||
</ | </syntaxhighlight> | ||
Returns | Returns | ||
< | <syntaxhighlight lang="javascript"> | ||
[1,5,8,33] | [1,5,8,33] | ||
</ | </syntaxhighlight> | ||
}} | }} | ||
[[Category:JSON Function]] | [[Category:JSON Function]] |
Latest revision as of 23:59, 15 March 2023
json.append() Function
• Introduced in version 1.3b49
Appends values to the end of a JSON Array. An empty string ("") can be used to represent an empty JSON Array to append the values to.
Usage
[h: jarr = json.append(jarr, value, ...)]
Example
Create a JSON array from a string list and then append an additional value.
[h:a=json.fromList("a,1,g,4")]
[r: json.append(a, 55)]
Returns
["a",1,"g",4,55]
Create a JSON array directly with append.
[r: json.append("", 1, 5, 8, 33)]
Returns
[1,5,8,33]