{{ 'I like %s and %s.' | format(foo, 'bar') }}
{# outputs I like foo and bar
if the foo parameter equals to the foo string. #}
format
The format filter formats a given string by replacing the placeholders.
Was this helpful?
The format filter formats a given string by replacing the placeholders.
{{ 'I like %s and %s.' | format(foo, 'bar') }}
{# outputs I like foo and bar
if the foo parameter equals to the foo string. #}
Was this helpful?