foreach (@lines) { next unless /start-phrase-here/ .. /stop-phrase-here/; # process } #### my $flag; foreach (@lines) { $flag++ if /start-phrase/; next unless $flag; # process }