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 に答える