Limit String Twig

前端 未结 6 1741
眼角桃花
眼角桃花 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:41

    I used this to truncate blog posts and show an ellipsis..

    {{ post.excerpt|striptags|length > 100 ? post.excerpt|striptags|slice(0, 100) ~ '...' : post.excerpt|striptags }}
    

    If the post excerpt length is greater than 100 characters then slice it at the 100s character starting from the first one and append an '...' Otherwise show full text..

提交回复
热议问题