in reply to Re^7: Matching string, then getting next linein thread Matching string, then getting next line
my $message; while (<FILE>) { if ( m/\d\d \d\d\/\d\d\/\d\d \d\d:\d\d:\d\d:\d\d\d .*/ ) { $message .= $_ } } [download]