In article
<[EMAIL PROTECTED]>,
[EMAIL PROTECTED] ("Brian C. Doyle") wrote:
> I need to remove a comma from inside of 2 quotes ie "1,234.56" I need to
> change that to "1234.56"
> Unfortunatly I can not do reg_replace(",","","1,234.56");
Possibly because the function is called ereg_replace() <g>...
But since you're not doing any special pattern matching, you might as well
use a simple str_replace(',','','1,234.56') instead.
--
CC
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]