Help for this page

Select Code to Download


  1. or download this
    my @hash;
    my @field;
    ...
    my @COL_CHECK_C = qw( NAME AGE STATE COUNTY );
    my @COL_CHECK_D = qw( NAME AGE CITY STATE COUNTY );
    my @COL_CHECK_E = qw( NAME AGE DESIGNATION CITY STATE COUNTY );
    
  2. or download this
    foreach my $key (@COL_CHECK_$ARGV[0]) {
    push( @field, $hash{$key} );
    }