add batch remove batch split batch comment selection show hidden batches hide batch highlight batch
db<>fiddle
donate feedback about
By using db<>fiddle, you agree to license everything you submit by Creative Commons CC0.
-- sample data
with t (overview) as (
select '<div><p>Some entities: &amp; &#39; &lt; &gt; to be handled </p></div>'
from dual
)
select REGEXP_REPLACE(overview, '<.+?>') as result1,
utl_i18n.unescape_reference(regexp_replace(overview, '<.+?>')) as result2
from t
RESULT1 RESULT2
Some entities: &amp; &#39; &lt; &gt; to be handled Some entities: & ' < > to be handled