I would like to manipulate a String
with regexp_replace
as follows:
String to manipulate:
'TESTE <<TESTE1>> TESTE <<TESTE2>>'
String after function:
'TESTE TESTE'
I tried it this way:
select regexp_replace('TESTE <<TESTE1>> TESTE <<TESTE2>>', '<<.*>>','')
but returns only 'TESTE'
.