Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Using Array of Arrays

by Aim9b (Monk)
on Sep 19, 2007 at 19:29 UTC ( [id://639977]=perlquestion: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    my $Excel = Win32::OLE->new('Excel.Application', 'Quit');
    $Excel->{SheetsInNewWorkbook} = 1;
    ...
    print "Add data\n";
    $Range = $Sheet->Range(sprintf "A2:E%d", 2+$#Bars);
    $Range->{Value} = \@Bars;
    
  2. or download this
    while ($inBuf = <csvFILE>) {
      chomp($inBuf);
    ...
    } # End of csvFILE or we reached our Runaway count
    
    close csvFILE;
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (4)
As of 2024-04-25 15:20 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found