I need to replace few selected html tags from string . Like for example let the string :
<B><SMALL>DSD-DNPH Color Cap Insert</SMALL></B>
and I did in following way :
REGEXP_REPLACE(name_text, '<[SMALL>]+>|<[/SMALL>]+>', '')
But I want to remove all selected html tags like: <B>, <SMALL> and <FONT> .
Can you please suggest me to do this in single line for multiple selector.
[SMALL]will match ONE CHARACTER,S,M,AorL. It would delete the characterSinDSD_NDPH. So... ??