If I were going to do what you say, I might write something like:
#!/usr/bin/perl use strict; use warnings; use 5.10.0; my %count; while (<DATA>) { if (/^(\S+)\s+([A-Z])$/) { $count{$1}{$2}++; } else { warn "Regular expression failed on $_"; } } for my $name (sort keys %count) { if (exists $count{$name}{Z}) { say "$name $count{$name}{Z}" } } __DATA__ Tommy Z Tommy Z Chris Z Chris B Chris Z Jake Z Jake Y
Important elements are keeping the line parsing code tight and minimizing the global memory footprint. Post more realistic data, and we can help refine regular expressions. Also note you are optimizing without profiling. In your circumstance, I will usually grab the first 1000 lines, and test my code with Devel::NYTProf to figure out if I'm doing something silly.

If you run something like the above on your file, the code should take about as long as just running

#!/usr/bin/perl use strict; use warnings; use 5.10.0; my $count; while (<DATA>) { $count++ } say $count;
If just counting lines in this way is too slow for your need, you'll need to use the window technique I and LanX have mentioned.

#11929 First ask yourself `How would I do this without a computer?' Then have the computer do it the same way.


In reply to Re^5: Nested greps w/ Perl by kennethk
in thread Nested greps w/ Perl by wackattack

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.