I am trying to read a text file and wish to replace all occurences of double quotes with a single quote.

I have tried :
Replace(textstring , " \" " , " ' ")
Replace(textstring , ' " ' , " ' ")

But get an error.