hi,
I have a string that has duplicates like "SbS"I want to replace one the first "S" and the other time,the other "S",so the output for it would be:
"Sb" and "bS"
but as I do it with Replace to just get one result that is :
"b"
what is the ways I cud solve this problem.
regards