Back to Twig

``title``

doc/filters/title.rst

3.24.0253 B
Original Source

title

The title filter returns a titlecased version of the value. Words will start with uppercase letters, all remaining characters are lowercase:

.. code-block:: twig

{{ 'my first car'|title }}

{# outputs 'My First Car' #}