Hi Monks,

I have a question reqarding printing x lines above and below a string found in a file. Currently I have the following code which identifies the string and prints the string and one line below. How would we modify this to print lets say 5 lines above and below the string?

I have searched but cant seem to find anything that does both. Most of what I found print either lines after or before when a string variable is found in the file. I am also not sure the way I have it is the best way to move forward with... Thanks for your input.

#!/usr/bin/perl use strict; $hits=0; $string_to_find="string"; $file = "filename"; open (LOGFILE, $file); while($line = <LOGFILE>) { if ($line =~ /$string_to_find/i) { $hits++; print "$line"; print scalar <LOGFILE>; } } close(LOGFILE);

In reply to Print Lines above and below string by coding_new

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.