$str = " This line contains\tliberal \r\n use of whitespace.\n\n";$str = preg_replace('/\s(?=\s)/', '', $str);// Echo out: 'This line contains liberal use of whitespace.'echo "{$str}";?>
{$str}