prepend
Adds the parameter to the end of the argument.
Syntax
{{ <Parameter> | prepend: <String Value> }} |
Arguments
Parameter - A string literal or name of the input parameter that will be added to the end of the string
String Value - The string that the parameter will be added to the end of
Example 1:
Input |
{{ 'First' | prepend: 'Second'}} |
Output |
'SecondFirst' |
Example 2:
InputParameter Value |
'input' |
Input |
{{ InputParameter | prepend: 'Second'}} |
Output |
'Secondinput' |