double quote appears on open and end of each lines.
Hi,
I'm extracting data to a text file (notepad) using VB system IO.
I'm not sure what is wrong.
When i extract the file from computer A, it is OK
Output:
Data A
Data B
Data C
Data D
But from PC B,
Output:
"Data A"
"Data B"
"Data C"
double quote appears on open and end of each lines.
Anyone know why and how to solve this?
Thanks.
Re: double quote appears on open and end of each lines.
Edit: Misread your question.
How do you write the text files?
Re: double quote appears on open and end of each lines.
Dim rdf As New IO.StreamWriter(ReadMe)
sBatchHeader_FullString1 = "Data A"
sBatchHeader_FullString2 = "Data B"
sBatchHeader_FullString3 = "Data C"
rdf.WriteLine(sBatchHeader_FullString1)
rdf.WriteLine(sBatchHeader_FullString2)
rdf.WriteLine(sBatchHeader_FullString3)
Re: double quote appears on open and end of each lines.
that isn't extracting anything. show more code that writes the data, and also the extraction. what about notepad? don't see that either