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