<?php
$string = 'This string has no whitespaces.';
echo ereg_replace( ' +', ' ', $string );
?>
Saturday, October 25, 2008
eat up spaces (replace space) to single space
Subscribe to:
Post Comments (Atom)
<?php
$string = 'This string has no whitespaces.';
echo ereg_replace( ' +', ' ', $string );
?>
No comments:
Post a Comment