2013-03-04 2 views

답변

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

또는

select regexp_replace(col, '<.*?>') from table 
관련 문제