Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re^4: Export CSV v2

by Perl3r (Novice)
on Oct 09, 2012 at 00:41 UTC ( [id://997904]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    my $csv = Text::CSV->new( { binary => 1, auto_diag => 2, } )
    or die "Cannot use CSV: " . Text::CSV->error_diag();
    $csv->eol ("\x0d\x0a");
    ...
    for my $csvFile (@ARGV) {
        print "\nProcesing file $csvFile ...\n";
        open my $csvfh, '<', $csvFile or die "Unable to open $csvFile: $!"
    +;
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://997904]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others exploiting the Monastery: (6)
As of 2024-03-28 20:37 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found