[PHP] strip comma from $value

2003-02-28 Thread Jim Long
Hi, I've figured out the way to solve my problem is to get rid of the commas before I sort. Trying to use this: //strip the commas--- foreach ($numeric_array as $key = $value) { if (stristr($value, ,)){ //test to see if it worked echo(comma striped); } } -- It

Re: [PHP] strip comma from $value

2003-02-28 Thread Hugh Danaher
try ereg_replace(,,,$value); - Original Message - From: Jim Long [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, February 28, 2003 9:17 AM Subject: [PHP] strip comma from $value Hi, I've figured out the way to solve my problem is to get rid of the commas before I sort

Re: [PHP] strip comma from $value

2003-02-28 Thread Justin French
on 01/03/03 4:41 AM, Hugh Danaher ([EMAIL PROTECTED]) wrote: try ereg_replace(,,,$value); no need for ereg here... str_replace(',','',$value); :) justin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php