pongo2 icon indicating copy to clipboard operation
pongo2 copied to clipboard

need strings function

Open zhangguanzhang opened this issue 1 year ago • 1 comments

{% set my_string = "abc" %}

{{ my_string.startswith('a') }}
{{ my_string.endswith('c') }}
{{ my_string.upper() }}
{{ my_string.lower() }}
{{ my_string.replace('a', 'x') }}
{{ my_string.strip() }}
{{ my_string.split('b') }}

output


True
True
ABC
abc
xbc
abc
['a', 'c']

zhangguanzhang avatar Jan 17 '24 11:01 zhangguanzhang