PHP preg_replace special characters - Stack Overflow
$newstr = preg_replace('/[^a-zA-Z0-9\']/', '_', "There wouldn't be any"); $newstr = str_replace("'", '', $newstr); I put them on two separate lines to make the code a little more clear. Note: If you're looking for Unicode support, see Filip's answer b...