如何在plsql中将htf.escape\u sc字符串转换为html?

如何在plsql中将htf.escape\u sc字符串转换为html?,plsql,oracle11g,Plsql,Oracle11g,我有绳子 encodeString = select htf.escape_sc('Please<B> escape <this> tag<html></html>'); encodeString=选择htf.escape_sc('Please escape tag'); 我想将'encodeString'变量转换为纯html代码(请转义标记) 在pl/sql中可以这样做吗?如果可以,我怎么做?str1:=“请转义标记”; str1 := '

我有绳子

encodeString = select htf.escape_sc('Please<B> escape <this> tag<html></html>'); 
encodeString=选择htf.escape_sc('Please escape tag');
我想将'encodeString'变量转换为纯html代码(请转义标记)

在pl/sql中可以这样做吗?如果可以,我怎么做?

str1:=“请转义标记”;
str1 := 'Please<B> escape <this> tag<html></html>';
str2 := regexp_replace(str1, '<.*?>');
str2:=regexp_replace(str1',);

从表中选择regexp\u replace(列“”)
select regexp_replace(col, '<.*?>') from table