Re: Why doesn't this match

2003-07-09 Thread David Storrs
On Tue, Jul 08, 2003 at 02:48:59PM -0400, Paul Kraus wrote: > Expression > /Sales - Freight - Leimkuehler\s+(\d+,?\d+\.?\d+)/ > > String > 410-02-00Sales - Freight - Leimkuehler > 6.96 > > It does match if I remove everything after Leimkuehler. > This is how it reads to me > > 1 or more

Re: Why doesn't this match

2003-07-08 Thread Paul Johnson
On Tue, Jul 08, 2003 at 02:48:59PM -0400, Paul Kraus wrote: > Expression > /Sales - Freight - Leimkuehler\s+(\d+,?\d+\.?\d+)/ > > String > 410-02-00Sales - Freight - Leimkuehler > 6.96 > > It does match if I remove everything after Leimkuehler. > This is how it reads to me > > 1 or more

RE: Why doesn't this match

2003-07-08 Thread Wagner, David --- Senior Programmer Analyst --- WGO
Paul Kraus wrote: > Expression > /Sales - Freight - Leimkuehler\s+(\d+,?\d+\.?\d+)/ > > String > 410-02-00Sales - Freight - Leimkuehler > 6.96 > > It does match if I remove everything after Leimkuehler. > This is how it reads to me > > 1 or more spaces > Open paren to save value to $1 >

RE: Why doesn't this match

2003-07-08 Thread Hanson, Rob
day, July 08, 2003 2:49 PM To: [EMAIL PROTECTED] Subject: Why doesn't this match Expression /Sales - Freight - Leimkuehler\s+(\d+,?\d+\.?\d+)/ String 410-02-00Sales - Freight - Leimkuehler 6.96 It does match if I remove everything after Leimkuehler. This is how it reads to me 1 or more

Why doesn't this match

2003-07-08 Thread Paul Kraus
Expression /Sales - Freight - Leimkuehler\s+(\d+,?\d+\.?\d+)/ String 410-02-00Sales - Freight - Leimkuehler 6.96 It does match if I remove everything after Leimkuehler. This is how it reads to me 1 or more spaces Open paren to save value to $1 1 or more digits Maybe a comma but not neces