use Modern::Perl;
use DateTime;
use autodie;
my $dt;
open my $fh, '<', 'data.txt';
# get the first date from the file
while (<$fh> && !$dt) {
if ( /^(\d+:\d+:\d+)/ ) {
$dt = DateTime->new( ... );
}
print;
}
I was expecting this loop to read each line of the file until the first datetime value is read.
Instead $_ is unitialised and i get a load of "uninitialized value $_ in pattern match" ( and print ) messages.
Any ideas why this happens?
A