You have been redirected from an outdated version of the article. Below is the content available on this topic. To view the old article click here.

concat()

Usage

concat(object...)

Description
Concatenates the given list of objects into a single string. The objects can be of any type: string, number, entity, etc. and will be concatenated without a separator.

Example

<div>${concat('test', 1, me, ' a string')}</div>

results in

<div>test1.0d8915af2c66942aeb46b960349fcadbc a string</div>

Search results for "concat()"

concat()

Concatenates the given list of objects into a single string without a separator between them.
The objects can be of any type: string, number, entity, collection. If a collection is encountered, all elements of that collection are concatenated.

concat(object...)