Should one end each entry with a delimiter (in this case ‘,’):
axis1,axis2,axis3,
1, 2, 3,
2, 3, 4,
or not:
axis1,axis2,axis3
1, 2, 3
2, 3, 4
in a .csv or is this just different dialects?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Not so according to RFC4180 where a csv record (line) is defined as
Which doesn’t mean you’ll never encounter the form with a trailing comma, as csv is notorious for its variations and deviations, and sometimes sloppy implementations.