rsperl has asked for the wisdom of the Perl Monks concerning the following question:
Hi, I have a scenario to search and replace a string with alphanumeric characters with another string containing alphanumeric characters
Here's the code:$fileName = $ARGV[0]; $OldVer="1.1.2.1-ABCD-PQ00.1.1.2.1.TAG"; $NewVer="1.1.2.2-ABCD-PQ01.1.1.2.2.TAG"; print "OldVersion :: $OldVer \n"; print "NewVersion :: $NewVer \n"; #Open Inputfile to read line by line data $file1 = $ARGV[0]; open(INPUTFILE,"<",$file1) || die "File to read could not be found. $! +"; # Create a .tmp file to copy search and replaced data $file2 = $ARGV[0].".tmp"; # Open output file in write mode open(OUTPUTFILE,">",$file2) || die "File to write could not be found. +$!"; print "Calling SearchAndReplace subroutine ... \n"; searchReplace(); sub searchReplace { # Read the input file line by line while (<INPUTFILE>) { $_ =~ s/$OldFPVer/$NewFPVer/; print OUTPUTFILE $_; } close INPUTFILE; close OUTPUTFILE; }
The inputs to this script would be provided as arguments i.e
perl searchReplaceVer.pl 1.1.2.1 1.1.2.2
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Search/Replace action using "."
by Corion (Patriarch) on Sep 08, 2011 at 07:31 UTC | |
|
Re: Search/Replace action using "."
by ikegami (Patriarch) on Sep 08, 2011 at 07:32 UTC | |
|
Re: Search/Replace action using "."
by johngg (Canon) on Sep 08, 2011 at 09:47 UTC |