What have you tried?

Not knowing which part has got you down, the quick break down is: open the input and output files, loop through them, change each line based on a regular expression that does what you want, print the changed line to the output file, and then close both file handles before exiting.

Most of this is taken care of if you use something like perl -pie 's/regexp/change/' filename. So the real problem is - what is the regular expression?

That depends on the spec. "As you can see" - I thought you just wanted to change "turkey" to "fox" until the last line - so it wasn't very obvious to me.

In your case, I would suggest code like this:

s/\S+(\s*)$/new-word$1/ if /elephant \* [/a-zA-Z]/
(the "last word" may not actually end the line - spaces after the last word doesn't change the fact it's the last word) The reason I didn't go with:
s/(elephant \* [/a-zA-Z].*?\s)\S+(\s*)$/$1new-word$2/
is because you don't always have more than one word following the *, and I couldn't think of a quick, easy, obvious way to do it in a single regex. Since everything is anchored, this shouldn't be much different in speed, but, more importantly, it should be correct.


In reply to Re: Changing the contents of a file by Tanktalus
in thread Changing the contents of a file by perlNinny

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.