in reply to Re: assign multiple values of a key in hash to multiple variable
in thread assign multiple values of a key in hash to multiple variable
Thank You Dave for the explanation. I did sort out the solution by introducing split and thus resolving the undef issue
my ($value1,$value2) = split (' ', $nn_file{$key});
|
|---|