Caution: This documentation is for eZ Publish legacy, from version 3.x to 6.x.
For 5.x documentation covering Platform see eZ Documentation Center, for difference between legacy and Platform see 5.x Architecture overview.

append

Summary

Returns the input string with a custom sequence appended to it.

Usage

input|append( value1 [, value2 [, ... ] ] )

Parameters

NameTypeDescriptionRequired
value1 mixed Text to be appended. Yes.
value2 mixed More text that should be appended. No.

Returns

A string consisting of the input string and the parameters.

Description

This operator appends the parameter value(s) at the end of the input string and returns the resulting string.

Examples

Example 1

{'The '|append( 'Last ', 'Crusade ' )}

The following output will be produced: "The Last Crusade".

Balazs Halasy (05/02/2004 10:51 am)

Balazs Halasy (04/05/2005 2:32 pm)


Comments

There are no comments.