|
|
@ -1622,12 +1622,12 @@ To get the root and extension of a path or file name (new in version 2.0)::
|
|
|
|
# with path == 'nginx.conf' the return would be ('nginx', '.conf')
|
|
|
|
# with path == 'nginx.conf' the return would be ('nginx', '.conf')
|
|
|
|
{{ path | splitext }}
|
|
|
|
{{ path | splitext }}
|
|
|
|
|
|
|
|
|
|
|
|
The ``splitext`` filter returns a string. The individual components can be accessed by using the ``first`` and ``last`` filters::
|
|
|
|
The ``splitext`` filter always returns a pair of strings. The individual components can be accessed by using the ``first`` and ``last`` filters::
|
|
|
|
|
|
|
|
|
|
|
|
# with path == 'nginx.conf' the return would be 'nginx'
|
|
|
|
# with path == 'nginx.conf' the return would be 'nginx'
|
|
|
|
{{ path | splitext | first }}
|
|
|
|
{{ path | splitext | first }}
|
|
|
|
|
|
|
|
|
|
|
|
# with path == 'nginx.conf' the return would be 'conf'
|
|
|
|
# with path == 'nginx.conf' the return would be '.conf'
|
|
|
|
{{ path | splitext | last }}
|
|
|
|
{{ path | splitext | last }}
|
|
|
|
|
|
|
|
|
|
|
|
To join one or more path components::
|
|
|
|
To join one or more path components::
|
|
|
|