while( $_ = ) { if ( /^Message-Id:/ || /^Content-Type:/ || /^Content-Disposition:/ || /^Content-Transfer/ || /^X-[-\w]*:/ || /^Status: RO/ || /^Mime-Version:/ ) { next; } . . . } #### @array=qw (Message-ID: Content-Type: Content-Disposition: and_so_on... ); LINE: while( $_ = ) { foreach $header (@array) { next LINE if /^$header/; } . . . }