Skip to content

Latest commit

 

History

History
90 lines (78 loc) · 2.9 KB

File metadata and controls

90 lines (78 loc) · 2.9 KB

Function: StringReduce

Run the provided udf over all characters in a string to reduce the values to a single output

Method Signature

StringReduce(list=[string], callback=[function:BiFunction], initialValue=[any], delimiter=[string], includeEmptyFields=[boolean], multiCharacterDelimiter=[boolean])

Arguments

Argument Type Required Description Default
list string true
callback function:BiFunction true The callback to use for the test
initialValue any false The initial value of the reduction
delimiter string false ,
includeEmptyFields boolean false false
multiCharacterDelimiter boolean false true

Examples

Related