Skip to content

Latest commit

 

History

History
90 lines (78 loc) · 2.97 KB

File metadata and controls

90 lines (78 loc) · 2.97 KB

Function: StringReduceRight

Run the provided udf over a reversed string to reduce the values to a single output

Method Signature

StringReduceRight(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 function to invoke for each item. The function will be passed 3 arguments: the value, the index, the array.
initialValue any false The initial value of the reduction
delimiter string false ,
includeEmptyFields boolean false false
multiCharacterDelimiter boolean false true

Examples

Related