ExCellerate.Functions.General.Concat (excellerate v0.4.0)

Copy Markdown View Source

Concatenates all arguments into a single string.

Non-string values are converted to their text representation before joining. Accepts any number of arguments.

Examples

concat('foo', 'bar')     'foobar'
concat('a', 1, true)     'a1true'
concat('Hello', ' ', name)  'Hello Alice' (when name is 'Alice')