// usage: $var = text_cleaner($str);
function text_cleaner($text){ $text=str_replace("\"",""",$text); // Get rid of curly quotation marks $text=str_replace(" "," ",$text); // Get rid of double spaces (not tabs) $text=str_replace("\r","",$text); //Windows files do \r\n, this is for a file created in Windows }