First, sir, thank you for this wonderful program and your hard work, and I do not want to cause you any inconvenience.
I simply think I do not know how to do something which to you may be obvious.
The filed break is the vertical bar.
It asks me what I want quotes to be. I read your 2013 post announcing to a user that you added this feature.
My cvs uses " within several records in one or more fields.
Shouldn't I set this to " then too?
I assumed I should do so, and I have, and now I have this problem of lines of text not being parsed at all
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
First, sir, thank you for this wonderful program and your hard work, and I do not want to cause you any inconvenience.
I simply think I do not know how to do something which to you may be obvious.
The filed break is the vertical bar.
It asks me what I want quotes to be. I read your 2013 post announcing to a user that you added this feature.
My cvs uses " within several records in one or more fields.
Shouldn't I set this to " then too?
I assumed I should do so, and I have, and now I have this problem of lines of text not being parsed at all
Quotes in a CSV refers to having a Quote at the start and end of a field.
e.g.
in the above case you would specify a quote of
"
.In the example below you would not specify a quote
111|Field 2|333
444|Field with a "quote"|666
CSV means Comma separated values. Problems arise if you use a comma in a field
e.g.
field 1,Comma, in a field,field 3
in the above example, field2="Comma, in a field" but the
line would be passed as
field1 = "field 1"
field2 = "Comma"
field3 = " in a field"
field4 = "field 3"
to get around this problem, quoted fields where introduced. The above example
would be represented as
with
"
used in the second field.Generally with
|
separated fields there is no quote. If you have any issuesshow me an example of the file