Help for this page

Select Code to Download


  1. or download this
    use strict;
    
    ...
       my @minorArray = split('\|', $_);
       push @majorArray, \@minorArray;
    }
    
  2. or download this
    my $arrayRef = $majorArray[0];
    foreach my $temp (@{$arrayRef})
    {
       print $temp,"\n";
    }
    
  3. or download this
    foreach my $item (@majorArray)
    {
    ...
          print $subitem,"\n";
       }
    }