RE: pattern in schema

2002-03-21 Thread James Liu
mes -Original Message-From: Christopher Ebert [mailto:[EMAIL PROTECTED]Sent: Thursday, March 21, 2002 1:05 PMTo: [EMAIL PROTECTED]Subject: RE: pattern in schema       Hi James,       Just from experience with regexes, it might need to be "^\d{1,9}\.\d{2}$", speci

RE: pattern in schema

2002-03-21 Thread Christopher Ebert
Title: pattern in schema       Hi James,       Just from experience with regexes, it might need to be "^\d{1,9}\.\d{2}$", specifying the start and end of the string. Otherwise, if it finds the pattern at all, it will match (e.g. 1234567890.12 = 1(234567890.12), which is a match but not what y