G
Guest
Dear all,
I have a csv file which as following output :
"REC00001.CSV","Pipe","25 x 2.5 mm","LP602","LP602","02/11/2004 15:15:04"
I need to remove from that string doucble quote char.
In order to read my file I use following code :
sRead = m_IOStream.ReadLine
'- as it is a CSV file format, we need to identify the separator
field and split the string in array for ready data
sRead = sRead.Trim(sTrimChar)
HOw to define my sTrimChar delimiter to remove double quote in my string.?
I have tried "''" but it fails
thnaks for your help
regards
serge
I have a csv file which as following output :
"REC00001.CSV","Pipe","25 x 2.5 mm","LP602","LP602","02/11/2004 15:15:04"
I need to remove from that string doucble quote char.
In order to read my file I use following code :
sRead = m_IOStream.ReadLine
'- as it is a CSV file format, we need to identify the separator
field and split the string in array for ready data
sRead = sRead.Trim(sTrimChar)
HOw to define my sTrimChar delimiter to remove double quote in my string.?
I have tried "''" but it fails
thnaks for your help
regards
serge