trim

The trim filter strips whitespace (or other characters) from the beginning and end of a string:

トリム フィルターは、文字列の先頭と末尾から空白 (またはその他の文字) を取り除きます。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{{ '  I like Twig.  '|trim }}

{# outputs 'I like Twig.' #}

{{ '  I like Twig.'|trim('.') }}

{# outputs '  I like Twig' #}

{{ '  I like Twig.  '|trim(side='left') }}

{# outputs 'I like Twig.  ' #}

{{ '  I like Twig.  '|trim(' ', 'right') }}

{# outputs '  I like Twig.' #}

Note

ノート

Internally, Twig uses the PHP trim, ltrim, and rtrim functions.

内部的に、Twig は PHP のトリム、ltrim、および rtrim 関数を使用します。

Arguments

  • character_mask: The characters to strip
    character_mask: 削除する文字
  • side: The default is to strip from the left and the right (`both`) sides, but `left` and `right` will strip from either the left side or right side only
    side: デフォルトでは左右 (`both`) から剥ぎ取りますが、`left`and `right` は左側または右側のみから剥ぎ取ります。