Re: [PHP] Re: Ereg problems

2004-03-26 Thread Curt Zirzow
* Thus wrote Jeff McKeon ([EMAIL PROTECTED]): > > > > > preg_match_all('($-?[0-9]+\.[0-9]+)', $string, $found); > > print_r($found); > > > > That produces: > > Array ( [0] => Array ( ) ) 0 , Array Sorry that should be: preg_match_all('/(\$-?[0-9]+\.[0-9]+)/', $string, $found); Curt --

RE: [PHP] Re: Ereg problems

2004-03-26 Thread Jeff McKeon
> -Original Message- > From: Curt Zirzow [mailto:[EMAIL PROTECTED] > Sent: Thursday, March 25, 2004 6:55 PM > To: [EMAIL PROTECTED] > Subject: [PHP] Re: Ereg problems > > > On Thu, 25 Mar 2004 18:31:02 -0500, Jeff McKeon > <[EMAIL PROTECTED]> > wrote: > > > Having some problems with e