I may have a string for example potato
in a vb.net application. I want to find all the occurrences of o
and convert them to 0
, so the desired out is: p0tat0
.
I know it can be done by the provided string operations but I need a regular expression in my scenario.
How can this be done?