capitalize
Capitalizes words within the parameter.
Syntax
{{ <Parameter> | capitalize }} |
Arguments
Parameter - A string literal or name of the input parameter containing the string to capitalize.
Example 1:
Input |
{{ 'one two three four' | capitalize}} |
Output |
'One Two Three Four' |
Example 2:
InputParameter Value |
'the quick brown fox' |
Input |
{{ InputParameter | capitalize}} |
Output |
'The Quick Brown Fox' |