Text and Strings
Text manipulation and adjustments - How to work with text?
Making strings UPPER case
{% set my_text = 'This will be upper case!' %}
{{ my_text | upper }}Making strings lower case
{% set my_text = 'This will be upper case!' %}
{{ my_text | lower }}Concatenating Strings
{{ '+49', '292828834' | join(' ') }}
--> Returns a space: +49 292828834
If you just want a joint without a string, you can just write:
{{ '+49', '292828834' | join }}
--> Returns a space: +49292828834Last updated
Was this helpful?