...

/

CSV Parsing: The Property

CSV Parsing: The Property

Learn to design the right properties and generators for our example application.

CSV format

CSV is a loose format that nobody really implements the same way. This can be quite confusing even though RFC 4180 tries to provide a simple specification:

  • Each record is on a separate line, separated by CRLF (a \r followed by a \n).
  • The last record of the file may or may not have a CRLF after it. This is optional.
  • The first line of the file may be a header line, ending with a CRLF. In this case, the problem description
...