- or download this
foreach my $rule ( keys %$rulelist ){
- or download this
if ( defined $rulelist->{$rulenum}->{REGION} ){
my $rule = $rulelist->{$rulenum}->{REGION};
...
}
elsif ( $line -> {REGIONID} != $rule) { next RULE };
...
- or download this
if ( defined (my $rule = $rulelist->{$rulenum}->{REGION} )){
next RULE if ( $rule =~ s/!// && $line->{REGIONID} == $rule);
next RULE if ( $line->{REGIONID} != $rule);
...