my $n = 0; foreach (@array) { next if I_dont_care_about($_); do_something_with ($_); print "." if !($n++ % 3); } print "\n";