json.fromList: Difference between revisions
Jump to navigation
Jump to search
Verisimilar (talk | contribs) mNo edit summary |
m (Conversion script moved page json.fromList to Json.fromList without leaving a redirect: Converting page title to first-letter uppercase) |
(No difference)
|
Revision as of 22:22, 9 February 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]