I have string:
aStr = 'Name0, Location0, Address0, Price0'
I want to replace only ',' at position number2 by ' &'. I tried code below but its replace all ',' in my aString.
aStr = 'Name0, Location0, Address0, Price0'
print(aStr.replace(',', ' &'))
How can I replace ',' at specific position?
I want output as below:
'Name0, Location0 & Address0, Price0'