REReplaceNoCase(string, '</?font[^>]*>', '', 'all') This will look for an open bracket (<) that may or may not be followed by a / followed by the word font then followed by any number of characters that is not a close bracket (>). This will be replaced by a blank for all occurrences in the string. Is this what you want?
At 11:29 AM 4/19/02, you wrote: >If I want to do a regular expression replace to remove several (but not all >HTML tags) what is the syntax that I should use. I want the expresion to >find, for example, the '<font and end at the '>' tag regardless of what is >in the middle. I've tried this <cfset >mystring=rereplacenocase(mystring,"^<FONT$>","","ALL")> but that doesn't >seem to work. Any suggestions? > >Thanks for your help > >Daron J. Smith >Web Developer >PSEA > >[EMAIL PROTECTED] >717-255-7141 >1-800-944-PSEA (7732) x 7141 >Please note new email address (old one with 'mail' will soon expire) > > >FAQ: http://www.thenetprofits.co.uk/coldfusion/faq >Archives: http://www.mail-archive.com/[email protected]/ >Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists ______________________________________________________________________ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/[email protected]/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

