in reply to Use of uninitialized value in pattern match (m//)

The key $componentName does not exist in %component_path or is assigned an undef. The reason might be you assign the number of subroutine arguments to $componentName: instead of
my $componentName = @_;
you probably meant
my ($componentName) = @_; # list context
or
my $componentName = $_[0];
or even
my $componentName = shift;
لսႽ† ᥲᥒ⚪⟊Ⴙᘓᖇ Ꮅᘓᖇ⎱ Ⴙᥲ𝇋ƙᘓᖇ

Replies are listed 'Best First'.
Re^2: Use of uninitialized value in pattern match (m//)
by anaconda_wly (Scribe) on Oct 31, 2012 at 17:31 UTC
    Yes, you both are right. I missed the componentName's value when called. Thanks!