in reply to
How do I create a CSV from a 2D array?
Do you mean like this?
print join "\t",map{join ",",@$_}([1,2,3],["abc","def"]);
Originally posted as a Categorized Answer.
Comment on
Re: How do I create a CSV
Download
Code
In Section
Seekers of Perl Wisdom