Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re: Replace strings in text file

by choroba (Cardinal)
on Sep 20, 2018 at 16:48 UTC ( [id://1222736]=note: print w/replies, xml ) Need Help??


in reply to Replace strings in text file

open my $lookup, '<', $lookuptxtfile or die $!; open my $new_lookup, '>', "$lookuptxtfile.new" or die $!; while (<$lookup>) { s/The action failed./failed_build/g; print {$new_lookup} $_; } close $new_lookup; rename "$lookuptxtfile.new", $lookuptxtfile or die $!;

Creating a new file and renaming it is what sed does behind the scenes, anyway.

Are you sure you don't want to backslash the dot?

($q=q:Sq=~/;[c](.)(.)/;chr(-||-|5+lengthSq)`"S|oS2"`map{chr |+ord }map{substrSq`S_+|`|}3E|-|`7**2-3:)=~y+S|`+$1,++print+eval$q,q,a,

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1222736]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (3)
As of 2024-04-19 19:44 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found