append


Adds the parameter to the beginning of the argument.


Syntax


{{ <Parameter> | append: <String Value> }}



Arguments

Parameter - A string literal or name of the input parameter that will be appended to the front


String Value - The string that the parameter appends to the front of


Example 1:

Input


{{ 'First' | append: 'Second'}}



Output


'FirstSecond'



Example 2:

InputParameter Value


'input'



Input


{{ InputParameter | append: 'Second'}}



Output


'inputSecond'