open(FILE, 'stuff.txt'); $h3 = 0; while(<FILE>) { chomp; if($_ =~ "<h3>"){$h3++; if($h3 > 1){close FILE;} } else{print "$_\n";} } close FILE;