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.
`Twig version is {{ constant('\Twig\\Environment::VERSION') }}. ` inside your template. Show activity on this post.
Try this :
{{ entity.description|striptags|slice(0, 40) }}
striptags
filter will remove the HTML tags, this will avoid to cut a tag in 2, example of this base case: Text ... <img src="http://examp
slice
filter will cut the text, keeping only the 40 first charactersIf you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With