Forum Moderators: coopster
// remove extra space in middle, remove all space at front & end, replace tab with space, remove null, remove vertical tab, remove extra space between double quote and non-space characters
$data = "hello\n\"morning";
$pattern = array("/\s+/", "/^\s+/", "/\s+$/", "/\t/", "/\x0B/", "/\s+\"/", "/\"\s+/");
$replace = array(' ', '', '', ' ', '', "\"", "\"");
$data = preg_replace($pattern, $replace, $data);
$data = "hello\n\"morning";
$data=str_replace("\n","<newline>",$data);
$pattern = array("/\s+/", "/^\s+/", "/\s+$/", "/\t/", "/\x0B/", "/\s+\"/", "/\"\s+/");
$replace = array(' ', '', '', ' ', '', "\"", "\"");
$data = preg_replace($pattern, $replace, $data);
$data=str_replace("<newline>","\n",$data);
;)