initial value passed as part of the first closure call
Alias:
initial, initalValue
delimiter
string,
optional
delimiter used to separate the string list
,
includeEmptyFields
boolean,
optional
include empty fields or not
false
multiCharacterDelimiter
boolean,
optional
specifying whether the delimiters parameter specifies a multi-character delimiter.
If this parameter is true, the delimiters parameter must specify a single delimiter consisting of multiple characters.
This parameter enables the ListToArray function to convert a list such as the following to an array of color names: red:|orange:|yellow:|green:|blue:|indigo:|violet.
true
Examples
numbers="1,3,5,7";reducedVal=listReduce(numbers,function(previousValue,value){returnpreviousValue+value;},0);writeOutput("The sum of the digits #numbers# is #reducedVal#");