I need a regex to remove the digits from a string but not also the spaces. I currently have
$city_location = 'UK,0113|Leeds new york';
$sip_city = '0113Leeds new york';
$city = preg_replace('/[^a-z]/i', '', $sip_city);
It removes the digits but also the spaces so I need a regex which won't remove the spaces.