PHP Удалить символы, а не цифры или буквы

$res = preg_replace("/[^a-zA-Z0-9\s]/", "", $string);
Alberto Peripolli