in reply to Re^4: Text::CSV_XS and "binary" mode
in thread Text::CSV_XS and "binary" mode
The default separation character is a comma, the default quotation character is a double quote (").
If the quotation character appears inside a field, it ought to be escaped with the escape character, which by default is also a double quote.
Separation characters can only appear inside a field if the complete field is quoted. In that case, the separation character should not be escaped.
For the two lines of CSV that you posted, I see no problem at all for the default values when using binary => 1 (except of course for the funny typo).
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^6: Text::CSV_XS and "binary" mode
by bittis (Sexton) on Jan 26, 2009 at 11:36 UTC | |
by Tux (Canon) on Jan 26, 2009 at 13:22 UTC |