my $cut = 0; while() { if(/<\/root>/) { $cut = 1; } elsif(//) { $cut = 0; next; # skip this line as well, but stop cutting } if(!$cut) { print OUTFILE $_; } }