Limit String Twig

前端 未结 6 1744
眼角桃花
眼角桃花 2020-12-17 18:14

How can I limit a string length? I\'m getting a description value from my database, but I want to only display a number of specific characters.

    <
6条回答
  •  暖寄归人
    2020-12-17 18:50

    Try this :

    {{ entity.description|striptags|slice(0, 40) }}
    
    1. the striptags filter will remove the HTML tags, this will avoid to cut a tag in 2, example of this base case: Text ...
提交回复
热议问题