lstrip
Removes all whitespace from the beginning of the parameter
Syntax
{{ <Parameter> | lstrip }} |
Arguments
Parameter - A string literal or name of the input parameter to remove all whitespace from the beginning
Example 1:
InputParameter Value |
' Space, the final frontier ' |
Input |
{{ InputParameter | lstrip}} |
Output |
'Space, the final frontier ' |
Example 2:
Input |
{{ ' These are the voyages of the starship Enterprise.' | lstrip}} |
Output |
'These are the voyages of the starship Enterprise.' |