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