Hi,
I am trying to use regular expression to remove any html tags/ from a string replacing them with nothing as shown below,
sample= if i enter "hello to the world of<u><p><br> apex whats coming up" i should get this==> "hello to the world of apex whats coming up"
consider query as, select regexp_replace(string, any html tags/ , 'i') from dual,
so how do i write the expression?
oracle 11g rel2,
thank you.