TRIM and regexp_Replace combined
Hi there,
a beginner question:
I go the following string:
:TEST:TEST2:
I dont want to see leading and trailing : so i do
Select trim (both ':' from ':TEST:TEST2:') from dual
Now I also want to regexp_replace the ':' by a ','
The solution should look like (Test,Test2)
What to do now? Thx in advance [Oracle 11g]