upcase
Converts all letters within the parameter to uppercase
Syntax
{{ <Parameter> | upcase }} |
Arguments
Parameter - A string literal or name of the input parameter to convert to uppercase
Example 1:
InputParameter Value |
'i do not know why i am screaming' |
Input |
{{ InputParameter | upcase: 'This is a default value'}} |
Output |
'I DO NOT KNOW WHY I AM SCREAMING' |
Example 2:
Input |
{{ 'loud noises' | upcase: 'This is a default value'}} |
Output |
'LOUD NOISES' |