pour nonum tu fais tout simplement :
Code PHP :
<?php
function no_num($chaine){
$chaine = preg_replace("#[0-9]+#", "");
return $chaine;
}