Difference between revisions of "Prokee Module: csv"

From prokee
Jump to navigation Jump to search
(Comma-Separated Values (CSV) Files)
Line 6: Line 6:
 
=== Differences to RFC 4180: ===
 
=== Differences to RFC 4180: ===
 
* Default line endings are marked with LF (\n) and not with the MS-DOS like CRLF (\r\n).
 
* Default line endings are marked with LF (\n) and not with the MS-DOS like CRLF (\r\n).
* Different characters can be used as field delimiters, line endings and quotation marks.
+
* Alternative characters can be used as field delimiters, line endings and quotation marks.
  
 
== Implementations ==
 
== Implementations ==

Revision as of 15:41, 16 May 2019

The module csv provides functionality for reading and manipulating csv data.

Comma-Separated Values (CSV) Files

A documentation of the csv file format (as it is followed by most implementations) can be found in RFC 4180[1].

Differences to RFC 4180:

  • Default line endings are marked with LF (\n) and not with the MS-DOS like CRLF (\r\n).
  • Alternative characters can be used as field delimiters, line endings and quotation marks.

Implementations

References