Open the 2nd file (the 3000 number file). Read the first eight digits of each entry into a hash, where the eight-digit number is a hash key.

Open the 3000000 number file. For each entry in that file, take the first eight digits, and check for the existence of a matching hash key. If one exists, increment the value indexed by that key.

Sort the keys by their corresponding value.

Print the first 100 entries from the sorted list of hash keys.

Start with this:

#!/usr/bin/perl # ...or whatever shebang line your system requires use strict; use warnings; # Follow the steps outlined above...

perlintro will contain everything you need for this. It takes about a half hour to read through it. After having read perlintro, and after getting started, you will probably come up with more specific questions. When asked along with code to illustrate your sticking points, we'll be able to help you along.


Dave


In reply to Re: Perl text processing by davido
in thread Perl text processing by biboshakan

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.