json.fromList: Difference between revisions
Jump to navigation
Jump to search
m (Conversion script moved page Json.fromList to json.fromList: Converting page titles to lowercase) |
No edit summary |
||
Line 6: | Line 6: | ||
|usage= | |usage= | ||
< | <syntaxhighlight lang="mtmacro" line> | ||
json.fromList(strList) | json.fromList(strList) | ||
</ | </syntaxhighlight> | ||
< | <syntaxhighlight lang="mtmacro" line> | ||
json.fromList(strList, delim) | json.fromList(strList, delim) | ||
</ | </syntaxhighlight> | ||
'''Parameters''' | '''Parameters''' | ||
{{param|strList|The [[String List]] that is converted to a [[JSON Array]].}} | {{param|strList|The [[String List]] that is converted to a [[JSON Array]].}} | ||
Line 17: | Line 17: | ||
|example= | |example= | ||
< | <syntaxhighlight lang="mtmacro" line> | ||
[r:json.fromList("a,1,g,4")] | [r:json.fromList("a,1,g,4")] | ||
</ | </syntaxhighlight> | ||
Returns {{code|["a",1,"g",4]}} | Returns {{code|["a",1,"g",4]}} | ||
Revision as of 17:49, 15 March 2023
json.fromList() Function
• Introduced in version 1.3b49
Returns a JSON Array from a String List.
Usage
json.fromList(strList)
json.fromList(strList, delim)
Parameters
strList
- The String List that is converted to a JSON Array.delim
- The delimiter used in the String List, defaults to","
.
Example
[r:json.fromList("a,1,g,4")]
["a",1,"g",4]