I have one column , which contain values like - $test test12$ test14 I have to update the value the between $$. like-$test done$ test14
I have tried to solve this by using :-
select REGEXP_REPLACE('$test test12$ test14','$(.*?)$','test done') from dual
But not working
Given String -$test test12$ test14 Expected result - $test done$ test14
$test test12$ test14$