我有线
encodeString = select htf.escape_sc('Please<B> escape <this> tag<html></html>'); 我想将'encodeString‘变量转换为纯html代码(请转义标签)
在pl/sql中可以这样做吗?如果可以,我该怎么做呢?
发布于 2013-03-05 01:36:09
str1 := 'Please<B> escape <this> tag<html></html>';
str2 := regexp_replace(str1, '<.*?>');或
select regexp_replace(col, '<.*?>') from tablehttps://stackoverflow.com/questions/15201879
复制相似问题