How to Replace Substrings

Oracle provides the following basic string replacement function:

select replace(fruit_name,'ap','AP') from fruits;
Fruit_name
grAPe
APple
Orange
peach

IN THIS PAGE