#!/usr/bin/perl -w use strict; #### my $textfile = "iwn.txt"; #### open TEXT, $textfile or die "Can't Open $textfile"; my ($email, $id); while (){ $email ||= $_ if /Email address:/; $id ||= $_ if /Message-Id:/; } #### close TEXT; print $email; print $id;