On Tue, 2006-10-03 at 15:17 -0500, Richard Lynch wrote: > On Tue, October 3, 2006 1:47 pm, Richard Lynch wrote: > > If you have this, it's better: > > $data = preg_replace("/ /", $data); > > D'oh! > > $data = preg_replace("/ /", " ", $data); Doesn't work on 3+ spaces in a row ;) $data = preg_replace("/ +/", " ", $data); Cheers, Rob. -- .------------------------------------------------------------. | InterJinn Application Framework - http://www.interjinn.com | :------------------------------------------------------------: | An application and templating framework for PHP. Boasting | | a powerful, scalable system for accessing system services | | such as forms, properties, sessions, and caches. InterJinn | | also provides an extremely flexible architecture for | | creating re-usable components quickly and easily. | `------------------------------------------------------------' -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php