RE: Strip HTML from String

2004-03-02 Thread Shawn Grover
There are functions for this at www.cflib.org -Original Message- From: Bailey, Neal [mailto:[EMAIL PROTECTED] Sent: Monday, March 01, 2004 10:40 AM To: CF-Talk Subject: Strip HTML from String Hello everyone... I saw a while back that someone either posted a snippet or a link to a tag

RE: Strip HTML from String

2004-03-02 Thread Bailey, Neal
Yeah I found Isaac's on cflib.com and that's what I'm using now, Thanks for the info... - Neal _ From: Shawn Grover [mailto:[EMAIL PROTECTED] Sent: Monday, March 01, 2004 11:57 AM To: CF-Talk Subject: RE: Strip HTML from String There are functions for this at www.cflib.org

RE: Strip HTML from String

2004-03-01 Thread rob.stokes
Hi Neal, Try: ReReplace(Form.CalloutComments,[^]*, ,ALL) Where 'Form.CalloutComments' is your string. Pretty simplistic, but it works. I'm sure someone will come up with something else..! -Original Message- From: Bailey, Neal [mailto:[EMAIL PROTECTED] Sent: 01 March 2004 5:40 pm To:

Re: Strip HTML from String

2004-03-01 Thread Ben Doom
That should work if you want to remove all HTML.If you want to be more selective, there's a UDF called StripTags by S. Isaac Dealey at http://www.cflib.org that is supposed to be pretty good. --Ben Doom [EMAIL PROTECTED] wrote: Hi Neal, Try: ReReplace(Form.CalloutComments,[^]*, ,ALL)

Re: Strip HTML from String

2004-03-01 Thread S . Isaac Dealey
Thanks for the ringing endorsement Ben. :) Ben doesn't use my functions because he's too good with regex to need them. heh :) That should work if you want to remove all HTML.If you want to be more selective, there's a UDF called StripTags by S. Isaac Dealey at http://www.cflib.org that is

RE: Strip HTML from String

2004-03-01 Thread Bailey, Neal
:[EMAIL PROTECTED] Sent: Monday, March 01, 2004 1:23 PM To: CF-Talk Subject: Re: Strip HTML from String Thanks for the ringing endorsement Ben. :) Ben doesn't use my functions because he's too good with regex to need them. heh :) That should work if you want to remove all HTML.If you want

RE: Strip HTML from String

2004-03-01 Thread S . Isaac Dealey
. Isaac Dealey [mailto:[EMAIL PROTECTED] Sent: Monday, March 01, 2004 1:23 PM To: CF-Talk Subject: Re: Strip HTML from String Thanks for the ringing endorsement Ben. :) Ben doesn't use my functions because he's too good with regex to need them. heh :) That should work if you want to remove