Hello,
I'm on Arcgis10 with VS2008Express with VBA.Net.
I have a parser setup to read a csv file. However when I write the file using code (WRiteLine() ) the parser can no longer read it as separate 'parts'.
My issue: WriteLine() insists on putting quotes around each string, so what the parser could read as:
aField, aValue
has now turned into
"aField, aValue"
My parser can no longer read it (aParsedString.First and .Last both return the entire string between the quotes. I cannot add " as a delimeter as the code won't accept 'aDelim = """ '
Any ideas how I can either fix the parser or get WriteLine to write the string without the quotes? I tried PrintLine based on a suggestion from another post but that writes with quotes, and NOT to individual lines - seemed weird, considering PrintLINE.
Thanks in advance.
Cheers,
Tom