ez.no / exponential / documentation / reference / template operators / strings / append
$input_string|append( value1 [, value2 [, ... ] ] )
| Name | Type | Description | Required |
|---|---|---|---|
| value1 | mixed | Stuff that will be appende to input. | yes |
| value2 | mixed | Stuff that will be appended to input. | no |
| ... |
String with parameters appended to input string.
Puts the parameter value(s) to the end of the input array/string. This is exactly the same append operator that is listed in the arrays category.
{"Testing "|append( "1 ", "2 ", "3" )}
returns the string "Testing 1 2 3".
Comments