I'm trying to replace " with nothing.
bString = Replace(aString, """, "")
does not work.
It says 'sting constants must end with a double quote'
What do I do?
In VB.Net, double quotes are escaped by doubling them: """"
""""
I've done this before with the character code -
bString = Replace(aString, chr(34), String.Empty)