Hi all, New perl user. I have a text file with some paragraphs in it. I am trying to delete a repetitive piece of text. The file looks something like this:

keep keep keep keep keep i want to start deleting here blah blah blah blah blah blah blah up to the newline.

keep keep keep keep keep i want to start deleting here blah blah blah blah blah blah blah up to the newline.

keep keep keep keep keep i want to start deleting here blah blah blah blah blah blah blah up to the newline.

the text where i want to start deleting is always the same phrase and i want to delete the paragraph from that point until the newline in that paragraph. It isn't in every paragraph. I need to do it for a few paragraphs from the file.

I would appreciate any help. Thanks.

----------------------------UPDATE---------------------------------------
Thanks all,

That was incredibly helpful. I wound up using a stream variable for the file and instead of looping through just used a global replace, so my code looked like this:

$stream =~ s/$deleteFromPhrase.*//g;

It works perfectly :)

Loving Perl!

Thanks!

In reply to Trying to delete text from a text file by nervousmark

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.