Re: Regular Expression Help?

2001-02-22 Thread David Cummins
Firstly I'd like to mention that doing this is playing with fire. ;) Secondly, I'd suggest three replaces: 1. Replace application.cfm with an easily recognisable other string without application in the name. 2. Replace "([^a-zA-Z0-9])application.([a-zA-z])" with "\1request.\2". 3. Replace the fun

Re: Regular Expression Help?

2001-02-22 Thread Jamie Jackson
Thanks, but I do extended find and replace routines on a regular basis, so my problem is not in deciding which utility to use. Rather, my problem is which regex to use--hence the subject line. Thanks, Jamie On Thu, 22 Feb 2001 11:21:55 -0600, in cf-talk you wrote: >u can open all your documents

RE: Regular Expression Help?

2001-02-22 Thread Phoeun Pha
u can open all your documents, then do an EXTENDED REPLACE, and choose ALL OPEN DOCUMENTS. it will do the search and replace on all open documents. or instead, u can tell it to do it from a directory. same thing :) -Original Message- From: Jamie Jackson [mailto:[EMAIL PROTECTED]] Sent:

Re: [Regular Expression Help]

2001-02-08 Thread Alex
first strip out all the href tags then add href tags to all URLS Joe Sheble aka Wizaerd <[EMAIL PROTECTED]> wrote: I have some text, and in this text there may or may not be URLs. Some of these URLs may already be inside of an A HREF tag while others may not. I need a regular expression that

Re: Regular Expression Help

2001-02-08 Thread David Cummins
Find them using RE "[^>](http://[a-zA-Z0-9/.-]+)[^<]" (or perhaps a better url RE if you like). This means an URL not sandwiched between two tags... good enough? Could do it something like this: rereplace(page, "([^>])(http://[a-zA-Z0-9/.-]+)([^<])", "\1\2\3") Which is basically using backrefere

Re: Regular Expression help

2000-10-15 Thread Dick Applebaum
Try: " , CFHTTP.FileContent, bodyBegin)> bodyBegin.|#bodyBegin#| bodyEnd...|#bodyEnd#| HTH Dick At 12:28 AM -0600 10/15/00, CF wrote: >I need to find the ">" of the body tag of CFHTTP.FileContent. > >So, I need to find the first ">" following >C

RE: Regular Expression help

2000-10-15 Thread Matthew Walker
> I need to find the ">" of the body tag of CFHTTP.FileContent. > So, I need to find the first ">" following ]*)(>)", TheString, 1, "TRUE")> -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To Unsubscr

RE: regular expression help

2000-09-29 Thread Mark Johnson
I don't know exactly what you are trying to find in the string. But this should match the contents of the first table row. [^<]*', HTML)> or if you just want the contents of everything between that cell. #ReReplace(HTML, '([^<]*)', \1)# However we really need to know what you want from the st

RE: regular expression help

2000-09-29 Thread Hayes, David
Well, you've got some characters other than :Alnum: and :space:. You've got :punct: in there also. -Original Message- From: sebastian palmigiani [mailto:[EMAIL PROTECTED]] Sent: Friday, September 29, 2000 1:29 PM To: CF-Talk Subject: regular expression help What am I doing wrong here?

RE: Regular Expression Help

2000-06-29 Thread Andrew Scott
You need the chr(13) & chr(10) characters to be replaced with -Original Message- From: Nicole R. Lane [mailto:[EMAIL PROTECTED]] Sent: Friday, 23 June 2000 2:54 PM To: [EMAIL PROTECTED] Subject: Regular Expression Help Hi: I'm trying to replace the new line character with for every

RE: Regular Expression Help

2000-06-23 Thread Steve Bernard
:[EMAIL PROTECTED]] Sent: Thursday, June 22, 2000 10:11 PM To: [EMAIL PROTECTED] Subject: Re: Regular Expression Help Application.cfm files are great for saving on coding and site management and stuff, but when you have sub folders that need their own Application.cfm files, they become less

RE: Regular Expression Help

2000-06-23 Thread Aidan Whitehall
> Application.cfm files are great for saving on coding and site > management and > stuff, but when you have sub folders that need their own > Application.cfm > files, they become less convenient as you have to make sure > to include any > needed code from the Application.cfms above them. Today

RE: Regular Expression Help

2000-06-22 Thread Chris Montgomery
>-Original Message- >From: Todd Ashworth [mailto:[EMAIL PROTECTED]] >Sent: Thursday, June 22, 2000 9:11 PM >To: [EMAIL PROTECTED] >Subject: Re: Regular Expression Help > >Is it possible to the 'root' Application.cfm >into the sub Application.cfms? Wor

Re: Regular Expression Help (oops!)

2000-06-22 Thread Todd Ashworth
Sorry for the mixed up subject line .. I'm going to bed .. sheesh. - Original Message - From: Todd Ashworth <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, June 22, 2000 10:11 PM Subject: Re: Regular Expression Help > Application.cfm files are great for

Re: Regular Expression Help

2000-06-22 Thread Todd Ashworth
Application.cfm files are great for saving on coding and site management and stuff, but when you have sub folders that need their own Application.cfm files, they become less convenient as you have to make sure to include any needed code from the Application.cfms above them. Today, I had a (probab

<    1   2