<?php

$foo = '&nbsp; &nbsp; &nbsp; &nbsp;A&nbsp; &nbsp; &nbsp; &nbsp;';
$foo = str_replace( '&nbsp;', ' ', $foo );
$foo = trim( ereg_replace( '[ ]+', ' ', $foo ) );

echo '['.$foo.']'."\n";

?>

I could have replaced '&nbsp;' with the empty string, but in case you
have labels with more than one word I took a normalizing approach.

Cheers,
Rob.


On Wed, 2008-01-02 at 13:34 -0500, tedd wrote:
> Hi gang:
> 
> I have a
> 
> $submit = $_POST['submit'];
> 
> The string contains:
> 
> &nbsp; &nbsp; &nbsp; &nbsp;A&nbsp; &nbsp; &nbsp; &nbsp;
> 
> (it's there to make a submit button wider)
> 
> How can I strip out the "&nbsp;" from the $submit string leaving "A"?
> 
> I've tried
> 
>     trim($submit);
> 
> but, that don't work.
> 
> Neither does:
> 
>     $submit = str_replace('&nbsp;','',$submit);
> 
> or this:
> 
>     $submit = str_replace(' ';','',$submit);
> 
> I should know what to do, but in this case I don't.
> 
> Help is always appreciated.
> 
> Cheers,
> 
> tedd
> 
> -- 
> -------
> http://sperling.com  http://ancientstones.com  http://earthstones.com
> 
-- 
...........................................................
SwarmBuy.com - http://www.swarmbuy.com

    Leveraging the buying power of the masses!
...........................................................

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to