PHP String Only Lettres

$result = preg_replace("/[^a-zA-Z0-9]+/", "", $s);
Xanthous Xenomorph