Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am wondering is the following row in valid CSV format:

1338531865,3.2.0,4a60bab27e707b5c,action,4a60bab27e707b5c,2099563141,MY,APAC,2012-06-01,CLICK,{""timestamp"":""2012-06-01 14:24:24""}

The last field has embedded double quote in it, but no comma. I have read http://tools.ietf.org/html/rfc4180 and http://en.wikipedia.org/wiki/Comma-separated_values, and it looks the entire field should be quoted like this:

1338531865,3.2.0,4a60bab27e707b5c,action,4a60bab27e707b5c,2099563141,MY,APAC,2012-06-01,CLICK,"{""timestamp"":""2012-06-01 14:24:24""}"

My Ruby CSV parser also proves my thought. But somehow the original row could pass some Java parser. So I am wondering is the original actually valid CSV or not, or both...

share|improve this question
I don't believe there's a universally agreed upon specification for CSV files, so it ultimately depends on what application will be reading it, but FWIW I agree with you that the quote escapes are wrong on the first example you have. – 500 - Internal Server Error Jun 6 '12 at 23:50

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.