View Single Post
Old 11-18-2004, 06:08 AM   #6 (permalink)
idx
Senior Grasshopper
 
idx's Avatar
 
Join Date: Jun 2003
Location: FL
Posts: 317
idx is on a distinguished road
PHP Code:
$str "nice line with crap on the end\r\n";
$str preg_replace("/[\r\n]/"""$str); 
Or just "/[\r]/" to remove the CR and no the unix LF.

-r
idx is offline   Reply With Quote