ez.no / exponential / documentation / reference / template operators / strings / concat
concat( value1, value2 [,...] )
| Name | Type | Description | Required |
|---|---|---|---|
| value1 | mixed | Stuff to concat. | yes |
| value2 | mixed | Stuff to concat. | yes |
| ... |
string containing all parameters.
Concatenates parameter values to one string. It is also possible to use this operator to to concatenate the elements of an array.
{concat("A ", "B ", "C")}
returns the string "A B C".
{let number=256} {concat("The number is:", $number, "!")} {/let}
returns the string "The number is: 256!"
Comments