//Remove all non alpha numeric characters $my_string = preg_replace("/[^a-zA-Z0-9\s]/", "", $my_string); //Remove spaces $my_string = trim(str_replace(' ','',$my_string)); //Remove spaces