How can I format a string in Twig as follows:
For example: img = 05myphoto-Car.jpg
img = 05myphoto-Car.jpg
I need to remove the numeric prefix and -
-
This works for me just fine (Craft CMS):
{# Removes all characters other than numbers and + #} {{ profile.phone|replace('/[^0-9+]/', '') }}