Can anyone tell me how a csv-file is structured because i need to code a parser.
Share
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.
In a CSV-File the Columns are seperated by ‘,’, the Rows by Newlines respectively. The First Row contains the indentifiers for the columns. If there is any occurence of delimiters in the content, it need to be escaped by an ‘"’ or the content needs to be literal.
RFC:
https://www.rfc-editor.org/rfc/rfc4180