Re[4]: Using RegularExpressions

2002-01-12 Thread Patric Stumpe
Well... :) I'll try the Studio feature. Nothing can't go wrong. But nevertheless fine to get some help from a Mac-User :)) But I'll mention here if it worked, when I'm back to work again! Patric Stumpe mail: [EMAIL PROTECTED] DA> I don't know... I don't use studio... DA> If studio supports ba

Re[3]: Using RegularExpressions

2002-01-12 Thread Dick Applebaum
I don't know... I don't use studio... If studio supports back references then you are good! Its my understanding that most program editors support grep (and back references), so I would be surprised if studio doesn't. I use BBEdit on the Mac and it supports them. Dick At 7:47 PM +0100 1/12/0

Re[3]: Using RegularExpressions

2002-01-12 Thread Patric Stumpe
So do you think it would also work in the Extended-Search/Replace-Menu in Studio or do I have to write a little cfm for that? Patric Stumpe mail: [EMAIL PROTECTED] DA> It is a backreference to remembered text (enclosed in parens) in the DA> first term (you can have up to 9 such items \1, \2...

Re[2]: Using RegularExpressions

2002-01-12 Thread Dick Applebaum
It is a backreference to remembered text (enclosed in parens) in the first term (you can have up to 9 such items \1, \2... corresponding to 9 sets of parens So: 'a href="([a-z0-9])', 'a href="../\1' = ||

Re[2]: Using RegularExpressions

2002-01-12 Thread Patric Stumpe
Hi Dick, I'll give it a try on monday. Is the 'Backslash-1' an Placeholderholder? Thanx a lot Patric mail: [EMAIL PROTECTED] DA> Try DA>new = ReReplaceNoCase(old, 'a href="([a-z0-9])', 'a href="../\1', DA> 'all'); DA> HTH DA> Dick _

Re: Using RegularExpressions

2002-01-12 Thread Dick Applebaum
Try new = ReReplaceNoCase(old, 'a href="([a-z0-9])', 'a href="../\1', 'all'); HTH Dick At 12:32 PM +0100 1/12/02, SID - ColdFusion wrote: >Hi there, > >I have a weird task to solve. I hope someone of you guys out there can >gimme a hint. >For a redesign of a customers site I have to repla

Using RegularExpressions

2002-01-12 Thread SID - ColdFusion
Hi there, I have a weird task to solve. I hope someone of you guys out there can gimme a hint. For a redesign of a customers site I have to replace links in source-code of the original pages to fit into the redesign. The problem is that those original sites (and their source) are messed up like h