Help for this page

Select Code to Download


  1. or download this
    if ( /REGION/ )
    {
    ...
    {
      # Regular data line .. handle normally (see below)
    }
    
  2. or download this
    my %SalesReps = { 7A => \@steve, 7 => \@sue, 8 => \@mike };
    
  3. or download this
    my $ThisArray = $SalesRep{ $region }
    
  4. or download this
    unshift ( @{ $ThisArray }, $region, $reg_num, @name );