Help for this page

Select Code to Download


  1. or download this
    # @lines is from the file
    my @bigarray;   #the output array
    ...
       my @temp = split ':', $_;
       push @bigarray, \@temp;
       }
    
  2. or download this
    @{$bigarray[0]};     #access the first inner array
    ${$bigarray[2]}[3];  #access element 2,3