Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re: what is @$varname in perl

by perlfan (Vicar)
on Jul 03, 2014 at 11:34 UTC ( [id://1092156]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
        foreach $line (@lines){
            chomp $line;
    ...
            @$row = split(/,/, $line );
            push @$sheet2 , $row;
        }
    
  2. or download this
    my @sheet2 = ()
    
    ...
            @row = split(/,/, $line );
            push @sheet2 , \@row;
        }
    
  3. or download this
    @$sheet2 = ();
    
  4. or download this
    @sheet2 = ();
    
  5. or download this
    $sheet2 = [];
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (5)
As of 2024-04-23 22:09 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found