As a quick and nasty script something like this perhaps?

use strict; use warnings; my %names; my $name; local $/ = '--------------------------------------------'; while (<DATA>) { chomp; s/\s+/ /g; next if ! /\S/; if (! defined $name) { $name = $_; next; } my @words = split; $names{$name} += @words; $name = undef; } print "$_: $names{$_}\n" for sort keys %names; __DATA__ -------------------------------------------- Joe Moglia, Ameritrade - CEO 3 -------------------------------------------- Thank you, Donna. Good morning, everybody and welcome to our last conf +erence call for Ameritrade as a stand-alone entity and for our very, very fir +st conference call for TD Ameritrade. -------------------------------------------- Randy MacDonald, Ameritrade - CFO 13 -------------------------------------------- There's one other element that makes it easier which is that Waterhous +e outsources their clearing to ADP and we've had -- this is our eighth i +ntegration and we've gone through that with ADP a number of times now. So we have + a pretty well worn cookbook on how to do that. ------------------------------------------------------------

Prints:

Joe Moglia, Ameritrade - CEO 3 : 30 Randy MacDonald, Ameritrade - CFO 13 : 51

You might want to tidy that up a little before you show it to your boss or teacher though! Altogether too much use of the default variable.

True laziness is hard work

In reply to Re: Reading in Block by GrandFather
in thread Reading in Block by eversuhoshin

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.