concat( value1, value2 [,...] )
Name | Type | Description | Required |
---|---|---|---|
value1 | mixed | A string that should be added. | Yes. |
value2 | mixed | Another string that should be added. | Yes. |
This operator merges several strings into one and returns the resulting string.
{concat( 'what', 'ever' )}
The following output will be produced: "whatever".
{def $number=256} {concat( 'The number is: ', $number, '!' )}
The following output will be produced: "The number is: 256!"
Powered by eZ Publish™ CMS Open Source Web Content Management. Copyright © 1999-2013 eZ Systems AS (except where otherwise noted). All rights reserved.