Skip to content

bmel:concat

Category: String · Returns: bmel:string

Variadic function

Accepts a variable number of arguments of the same type.

bmel:concat(values: bmel:any...)

Description

Concatenates two or more values into a single string. Each value is coerced to string before joining.

Arguments

Parameter Type Required Description
values ... bmel:any Two or more values to concatenate.

Example

bmel:concat({order:Response Payload}.$.firstName, " ", {order:Response Payload}.$.lastName)

Back to BMEL Reference