in reply to Comma problem

CSV files are somewhat more complex than they might initially appear. I reccomend using Text::CSV to generate your file instead of trying to do it directly.

Replies are listed 'Best First'.
Re^2: Comma problem
by jZed (Prior) on Jan 20, 2005 at 15:55 UTC
    Text::CSV will fail if you have any newlines embedded in your data. I strongly recommend using Text::CSV_XS which not only handles the newlines but is also much faster.