0

我有字符串

encodeString = select htf.escape_sc('Please<B> escape <this> tag<html></html>'); 

我想将“encodeString”变量转换为纯 html 代码(请转义标签)

如果是的话,我该怎么做?

4

1 回答 1

1
str1 := 'Please<B> escape <this> tag<html></html>';
str2 := regexp_replace(str1, '<.*?>');

或者

select regexp_replace(col, '<.*?>') from table
于 2013-03-04T17:36:09.300 回答