I need help on a simple string replacement, but I don't know what I'm doing wrong.
I have this string:
\\PC-01\C:\Katherina\Applications\PyPP\Path\Sample\rsc\Harold_and_Kumar_Christmas.jpg
What I want to do is remove the ":" in "C:", I want it to be like this:
\\PC-01\C\Katherina\Applications\PyPP\Path\Sample\rsc\Harold_and_Kumar_Christmas.jpg
I don't know why my code is not working. I'm using this code:
X = \\PC-01\C:\Katherina\Applications\PyPP\Path\Sample\rsc\Harold_and_Kumar_Christmas.jpg
X.replace("C:","c")
Yet the outcome is still like this:
\\PC-01\C:\Katherina\Applications\PyPP\Path\Sample\rsc\Harold_and_Kumar_Christmas.jpg
Please help me on how to overcome this. And also please enlighten me, why is my code not working?
I have used .replace many times, but I don't know what's wrong this time .