I have the URL like \abcfolder\cdf\ghi now i need to convert the URL like //abcfolder/cdf/TCSPMs/ghi .I used the following code but its not working . Need your suggestions.
string url = "\\abcfolder\cdf\ghi";
url.replace("\\" , "//")
url.replace("\" , "/")
How can I achieve this ?