to answer one of your questions...... 1 or more numbers.
the other issues.... i would love to contribute, but i really am having a hard time grasping them.... what would it take? tw -----Original Message----- From: Michael Dinowitz [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 21, 2002 10:37 PM To: CF-Talk Subject: Re: regex generator You can build a pattern generator but no matter what pattern gets generated, you'll have to tweak it by hand. Lets take your example here: report_id="545687" You could build it using a 'piece by piece' method doing the following: report_id=" 545687 " Now the thing that we really have to look at is the 545687 part. It can be defined as: 1 or more number characters 0 or more number characters 1 or more characters 0 or more characters 6 number characters etc. A generator to do this is very do-able, but the bottom line is in what language, in what time and by who. > has anyone ever given any thought > to, or developed on or knows where > to get, download or purchase a regex > generator.....such that you could type > in the string you may be searching for, and > it would give you the regular expression > for that? > > just a wonderin on a > delmarva-lous night > on deal island :) > > ...tony > > tony weeg > [EMAIL PROTECTED] > www.revolutionwebdesign.com > rEvOlUtIoN wEb DeSiGn > 410.334.6331 > > ______________________________________________________________________ Signup for the Fusion Authority news alert and keep up with the latest news in ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/[email protected]/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

