I have the input string "textfile\foldername\text.txt"
Now i need to convert given string to:
textfile/foldername/text.txt
I went through string.replace(oldchar, newchar) methods, but i actually couldnt remove the " and \ characters from the string. Need help