From: "NAKAMURA, Hiroshi" Date: 2004-05-18T15:51:06+09:00 Subject: Re: CSV bug? Hi, Pe�a, Botp wrote: >>0% cat pena.csv >>1;SMTP:"local;part"@test.com;x400:blahblahblah;smtp:test@test.com >>2;SMTP:"local;part2"@test.com;x400:blahblahblah;smtp:test2@test.com >> >>0% ruby -rcsv -e 'CSV.parse("pena.csv", ?;) { |row| p >>row.to_a }' ["1", "SMTP:\"local", "part\"@test.com", > > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ > is it possible (in the future perhaps) to join this into > one? That is the point I wrote, too... Excel and OpenOffice parses like above. So it will be an option if I can write such a (robust?) CSV parser, not changing the current behavior. CSV::Robust.parse("foo.csv") ? Regards, // NaHi