Replacing characters with the specified
I have a line like this: MFMFMF
now i want to change this line to FMFMFM, how to do it, help you need pls
I tried
select replace (replace ('mfmfmf', 'M', 'F'), 'F', 'M'). this gives me the result - MMMMMM which i dont know i want the output to be FMFMFM Your help is needed.
D.Mahesh
+2
a source to share