Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有字符串
encodeString = select htf.escape_sc('Please<B> escape <this> tag<html></html>');
我想将“encodeString”变量转换为纯 html 代码(请转义标签)
如果是的话,我该怎么做?
str1 := 'Please<B> escape <this> tag<html></html>'; str2 := regexp_replace(str1, '<.*?>');
或者
select regexp_replace(col, '<.*?>') from table