Help for this page

Select Code to Download


  1. or download this
    sub do_dni {
        my ( $filename ) = @_;
    ...
            $sub_ref->($fn) if ( $fn =~ /$pattern/ );
        }
    }
    
  2. or download this
    my @dispatch = ( { pattern => qr/DNI/,
                       coderef => \&do_dni, },
    ...
                if ( $fn =~ $item->{pattern} );
        }
    }