Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> strip HTML tags from fields?

strip HTML tags from fields?

From: the matt <matt_at_kettlewell.net>
Date: Thu, 09 Aug 2007 08:43:18 -0700
Message-ID: <1186674198.528321.311560@57g2000hsv.googlegroups.com>


Hello,

Does anyone have an easy inline REGEXP_REPLACE() (or equivalent) that will strip out unwanted HTML tags?

I've been trying the following variation, but I suspect that I'm on the wrong path.

SELECT
     regexp_replace (name , '(<.*>).*(<.*>).*(<.*>)' , '\1 \2 \3 ') FROM ... Thanks

Matt Received on Thu Aug 09 2007 - 10:43:18 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US