in reply to Re^5: Uninitialized value in concatenation (.) or string?
in thread Uninitialized value in concatenation (.) or string?
Both of the elemnts in the 5th row of the matchedfiles array show the output of not being defined. It seems as if nothing is being passed to the array, when back on line 63 I have the following:print "\n\n"; my $refarray3 = $matchedfiles[5]; print "it's not defined!\n" unless defined(${$refarray3}[0]); print "it's not defined!\n" unless defined(${$refarray3}[1]); print "File: ${$refarray3}[0] in directory ${$refarray3}[1]\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^7: Uninitialized value in concatenation (.) or string?
by pc88mxer (Vicar) on May 09, 2008 at 18:52 UTC | |
by jbush82 (Novice) on May 09, 2008 at 19:13 UTC | |
by starbolin (Hermit) on May 10, 2008 at 05:43 UTC |