Concat function
This function merges text from multiple strings using a specified separator.
This function merges text from multiple strings and separates it by a specified separator string.
Examples
{{#Invoice}}{{Cmd_Assign(VarStr,.|Concat(Account.Name,InvoiceNumber,'-'))}}{{VarStr}}{{/Invoice}}
Remarks
`
.` in `.|Concat(Account.name` is the invoice, and it's a reference to the contextual object.To work, the `
Concat` function decorator requires an input. Piping the invoice object `.` to the right side function requires the use of `|`.