Re: RegEx rookie question

2002-02-22 Thread Howie Hamlin
Thanks, I appreciate it. Regards, Howie - Original Message - From: <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Friday, February 22, 2002 1:00 PM Subject: Re: RegEx rookie question > how about > > /^[a-z0-9]{n}X/i > > where n i

RE: RegEx rookie question

2002-02-22 Thread Matthew R. Small
How about: mid(string,10,1) eq 'X' - Matt Small -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, February 22, 2002 1:01 PM To: CF-Talk Subject: Re: RegEx rookie question how about /^[a-z0-9]{n}X/i where n is the index of the characte

RE: RegEx rookie question

2002-02-22 Thread Steve Oliver
something like: "[0-9]\{125\}X" you could also have: "[0-9]\{m,n\}X" Where {m,n} indicates that the preceeding element must match at least m times and may match as many as n times. ___ steve oliver atnet solutions, inc. http://www.atnetsolutions.com -Original Message--

Re: RegEx rookie question

2002-02-22 Thread savan . thongvanh
how about /^[a-z0-9]{n}X/i where n is the index of the character and X is the character? "Howie Hamlin" <[EMAIL PROTECTED]> on 02/22/2002 11:50:58 AM Please respond to [EMAIL PROTECTED] To: CF-Talk <[EMAIL PROTECTED]> cc: Subject: RegEx rookie question Is there a way to check for a c