RE: Seeking RegEx help

2003-10-02 Thread Owens, Howard
~~ -Original Message- From: Gyrus [SMTP:[EMAIL PROTECTED] Sent: Wednesday, October 01, 2003 8:55 PM To: CF-Talk Subject: Re: Seeking RegEx help At 17:33 01/10/2003 -0700, you wrote: I have a URL I'm grabbing ... http://ww.mysite.com/VENTURA-435672_123-1.jpg I'm

Seeking RegEx help

2003-10-01 Thread Owens, Howard
I have a URL I'm grabbing ... http://ww.mysite.com/VENTURA-435672_123-1.jpg I'm actually only interested in grabbing the 435672_123 part. REReplace(myURL, ([-])([0-9]{6,}[_][0-9]{3})([-]), \2, ONE) But all that does is drop the dashes from around the number I want ... how do I grab out just

Re: Seeking RegEx help

2003-10-01 Thread Gyrus
At 17:33 01/10/2003 -0700, you wrote: I have a URL I'm grabbing ... http://ww.mysite.com/VENTURA-435672_123-1.jpg I'm actually only interested in grabbing the 435672_123 part. REReplace(myURL, ([-])([0-9]{6,}[_][0-9]{3})([-]), \2, ONE) But all that does is drop the dashes from around the