Hi
And if you use Perl look at the Spreadsheet::WriteExcel module. Is incredibly easy too use.
By the way, CSV is just theoretically a list of values separated by comma, like this :
[tt] Don Wilson,Bloodfist[/tt]
Practically the values may contain commas :
[tt] "Wilson, Don",Bloodfist[/tt]
And of course quotation marks too :
[tt] 'Wilson, Don "The Dragon"',Bloodfist[/tt]
[tt] "Wilson, Don \"The Dragon\"",Bloodfist[/tt]
[tt] "Wilson, Don ""The Dragon""",Bloodfist[/tt]
And here you can see the problem : CSV is not a standard format, and softwares could implement the escaping if quotation marks in different ways.
Feherke.