Contents |
Returns a JSON Array from a String List.
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 ",".
[r:json.fromList("a,1,g,4")]Returns ["a",1,"g",4]