Changing the contents of a file
perlNinny
created: 2006-02-02 17:48:00
Let us say that I have a text file with the following:

elephant * -ugly /leave/this/alone
elephant * /only/change/->/turkey
elephant * turkey

I would like to change that file to say:
elephant * -ugly /leave/this/alone
elephant * /only/change/->/fox
elephant * fox

Or a file with:
elephant * -ugly /leave/this/alone
elephant * /only/change/->/turkey

to say:
elephant * -ugly /leave/this/alone
elephant * /only/change/->/fox

Or a file with:
elephant * -ugly /leave/this/alone
elephant * turkey

to say:
elephant * -ugly /leave/this/alone
elephant * fox

As you can see, I need it to change after only an elephant * with either a / or [a-z|A-Z] and only change the last word.

Suggestions?
Re: Changing the contents of a file
created: 2006-02-02 18:13:09

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.

Re: Changing the contents of a file
created: 2006-02-02 18:14:25
Since what you are substituting always occurs at the end of a line, the easiest way to do this seems to me to be something like:
perl -pe 's/turkey$/fox/' file_full_of_turkeys_that_you_want_to_be_foxes
Re: Changing the contents of a file
created: 2006-02-02 18:16:32
Since what you are substituting always occurs at the end of a line, the easiest way to do this seems to me to be something like:
perl -pi -e 's/turkey$/fox/' file_full_of_turkeys_that_you_want_to_be_foxes
Re: Changing the contents of a file
created: 2006-02-02 18:32:35
Here's my shot at it, assuming "turkey" isn't always going to be the same pattern/word.
while() {
	s#(elephant\s+\*\s+)(.*?)\w+$#$1$2fox# if (!/-ugly/);
	print;
}

__DATA__
elephant * -ugly /leave/this/alone
elephant * /only/change/->/turkey
elephant * turkey

elephant * -ugly /leave/this/alone
elephant * /only/change/->/turkey

elephant * -ugly /leave/this/alone
elephant * turkey

This is somewhat of a kludge, as I wanted to use a negative look-behind on the "-ugly", but I couldn't get it to work.

If "turkey" is always going to be "turkey", then the solution is a lot easier: s/turkey$/fox/

perlmonks.org content © perlmonks.org and kwaping, l3v3l, perlNinny, Tanktalus

prlmnks.org © 2006 edmund von der burg (eccles & toad)

v 0.03