I'm using the twig template engine while using symfony2. I'm trying to find a way to delete the white spaces from a text.
For example, I play
shall become Iplay
.
I've tried:
First let's see what you tried and why that wasn't working:
What you need to use is the following:
{{ 'Some Text With Spaces'|replace({' ': ''}) }}
This will output:
SomeTextWithSpaces
More details in the documentation.
Try this:
{{ "I plays"|replace({' ':''}) }}
If 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