You could also refer to the double quote character by its ASCII value like this:
[tt]sDoubleQuote = Chr(34)
sSingleQuote = Chr(39)
MyString = Replace(MyString, sDoubleQuote, sSingleQuote)
[/tt]
Or I guess you could also do this:
[tt]MyString = Replace(MyString, Chr(34), "'")[/tt]
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.