Hallo!
I have found this script on a internet:
<?php
function remove_numbers($value)
{
$value=preg_replace('/d+/', '', $value);
return $value;
}
$string='This string will have all numbers removed - 283 3928 3930';
echo remove_numbers($string);
?>
But not work...
Any idea?