Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Remove accent characters in twig

Tags:

php

twig

please how I can remove the accent in variable url for example Téléphone to Telephone

 <td><a href="{{ path('search_city',{'cityName':url  }) }}">{{ city }}</a></td> 
like image 397
titeuf Avatar asked Oct 30 '25 12:10

titeuf


1 Answers

Alternative method :

    <td><a href="{{ path('search_city',{'cityName':url  }) | replace({ 'á':'a', 'é':'e', 'í':'i', 'ó':'o', 'ú':'u' }) }}">{{ city }}</a></td> 
like image 98
Peter Avatar answered Nov 02 '25 03:11

Peter



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!