dbmathis has asked for the wisdom of the Perl Monks concerning the following question:
foreach $log ( sort keys %logfiles ) { foreach ( @surl ) { $urlp = $_ . 'hc'; if ( $log =~ /[.]/ && $log !~ /^[.]/ ) { @slog = split( '.', $log ); #$slog[0] =~ s/HELog_//g; print $slog[0]; #if ( $slog[0] eq $urlp ) { #push @logfiles, $log; #} } } }
Use of uninitialized value in print at ./he8-errors line 252. Use of uninitialized value in print at ./he8-errors line 252. Use of uninitialized value in print at ./he8-errors line 252. Use of uninitialized value in print at ./he8-errors line 252. Use of uninitialized value in print at ./he8-errors line 252. Use of uninitialized value in print at ./he8-errors line 252.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Is it possible to split a hash key?
by diotalevi (Canon) on Jul 28, 2007 at 23:06 UTC | |
by dbmathis (Scribe) on Jul 28, 2007 at 23:49 UTC | |
by Anno (Deacon) on Jul 29, 2007 at 12:13 UTC | |
by almut (Canon) on Jul 29, 2007 at 12:39 UTC | |
by Anno (Deacon) on Jul 29, 2007 at 13:23 UTC | |
by diotalevi (Canon) on Jul 29, 2007 at 17:31 UTC | |
|
Re: Is it possible to split a hash key?
by wind (Priest) on Jul 29, 2007 at 00:41 UTC | |
|
Re: Is it possible to split a hash key?
by Anonymous Monk on Jul 29, 2007 at 20:02 UTC | |
by mjscott2702 (Pilgrim) on Jul 29, 2007 at 23:57 UTC |