Help for this page

Select Code to Download


  1. or download this
    $hash{$arg} = [@array];
    push (@{ $hash{$arg} }, @array) unless /^\#|none|unkno/i;
    
  2. or download this
    while (<FILE>) { 
        next if /^#/;
        next if /none|unkno/i;
    ...
        #  printing each array element also passes here
        $hash{$arg} = [@array];
    }