in reply to Re: Re: strict refs on / off process time
in thread strict refs on / off process time

Store subrefs in a hash instead.
my %parsers = ( address => sub { # ... }, f_dcompany => sub { # ... }, xmlbzzwrd => sub { # ... }, );
Then you can call these like chromatic pointed out: $parser{$whatever}->(@pass, $some, @params);

Makeshifts last the longest.