Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Re^3: How to call a Sub / Function with changing name

by ig (Vicar)
on Oct 29, 2010 at 01:17 UTC ( [id://868197]=note: print w/replies, xml ) Need Help??


in reply to Re^2: How to call a Sub / Function with changing name
in thread How to call a Sub / Function with changing name

You can pass variables and file handles to subroutines. See perlsub for details. Here is an example:

use strict; use warnings; my %function = ( allergies => \&print_allergies, immunizations => sub { my ($fh, $dir) = @_; print "\nin immunizations from directory $dir\n"; }, ); my $dir = 'input_files'; opendir DIR, $dir or die "$dir: $!"; while (defined(my $file = readdir DIR)) { next if($file =~ /^\.+$/); print "The directory and file are $dir/$file\n"; open my $fh, '<', "$dir/$file" or die "$dir/$file: $!"; $function{$file}->($fh, $dir) if exists $function{$file}; } closedir DIR; sub print_allergies{ my ($fh, $dir) = @_; print "\nprinting allergies from directory $dir\n"; while (<$fh>){ next if (/^#/); print $_ ; } }

update: added example of passing a variable other than a file handle.

Replies are listed 'Best First'.
Re^4: How to call a Sub / Function with changing name
by kevyt (Scribe) on Oct 29, 2010 at 16:23 UTC
    Thanks! This is what I did not have correct.
    $function{$file}->($fh, $dir) ... allergies => \&print_allergies
    Thanks very much!

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://868197]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (4)
As of 2026-02-19 09:28 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found

    Notices?
    hippoepoptai's answer Re: how do I set a cookie and redirect was blessed by hippo!
    erzuuliAnonymous Monks are no longer allowed to use Super Search, due to an excessive use of this resource by robots.