I am attempting to uppercase the replacement string from my reg expression without success:
SELECT regexp_replace('src=/i/uie_v2/js','(/uie_v2/)',upper('\1')) from dual
returns 'src=/i/uie_v2/js'
I understand that upper cannot be used .. just showing as an example. Any ideas on how to achieve this ?