I'm looking for a regexp that will replace everything in a string that is not a character
(A-Z,a-Z) with ''.
forer example:
$string= "hj <12äö å &65% k $";
$new_string = preg_replace($perfect_pattern, '', $string);
In this case I want $new_string to be "hjk"
Can someone help me?
/Ludo