I interpret your code as searching through these contract files for the "Management Fees" string, and then printing that line and the next 19 lines. If this is true then I think you're making it too difficult by slurping the entire file into a string, and then iteratively searching through that string, each time from the beginning.

If my interpretation is correct, here is a bit of code that does the same thing but processes the files line-by-line. Also it has code, which I think you requested, creating different output files for each input file.

foreach my $contract (@contracts) { open (Contract1, "<", $contract) || die("Cannot open input file $contract: $!"); my @all; while (<Contract1>) { if (/Management Fees/i) { # Print this line push @all, $_; # And the next 19 lines too for (my $i=0; $i<($linescount-1); $i++) { my $line = <Contract1>; last if !defined $line; push @all, $line; } } } close Contract1; # Base output filename on original filename. my $outfile = "$contract".".output"; open (Contract1a, ">", $outfile) || die("Cannot open output file $outfile: $!"); print Contract1a join("\n",(@all)); close Contract1a; }

In reply to Re: Reading a Directory of Files, Searching for Text, Outputting Matches by gmargo
in thread Reading a Directory of Files, Searching for Text, Outputting Matches by NorthShore44

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.