Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re: Replace strings in text file

by thanos1983 (Parson)
on Sep 21, 2018 at 08:11 UTC ( [id://1222786]=note: print w/replies, xml ) Need Help??


in reply to Replace strings in text file

Hello TonyNY,

Fellow Monks have provided you with a solution to your problem. Just for fun you can use also the module File::Slurp.

Sample code:

#!/usr/bin/perl use strict; use warnings; use File::Slurp qw(read_file write_file); my $filename = 'in.txt'; my $data = read_file $filename, {binmode => ':utf8'}; $data =~ s/The action failed\./failed_build/g; write_file $filename, {binmode => ':utf8'}, $data; __END__ $ cat in.txt one two The action failed. three The action failed. twice The action failed. four $ cat in.txt one two failed_build three failed_build twice failed_build four

As fellow Monk choroba said File::Slurp is broken and wrong, instead you can use the File::Slurper.

Sample of code:

#!/usr/bin/perl use strict; use warnings; use File::Slurper qw(read_text write_text); my $filename = 'in.txt'; my $data = read_text($filename); $data =~ s/The action failed\./failed_build/g; write_text($filename, $data); __END__ $ cat in.txt one two The action failed. three The action failed. twice The action failed. four $ cat in.txt one two failed_build three failed_build twice failed_build four

Or mu personal favorite IO::All, sample of code:

#!/usr/bin/perl use strict; use warnings; use IO::All -utf8; # Turn on utf8 for all io my $contents = io->file('in.txt')->slurp; $contents =~ s/The action failed\./failed_build/g; $contents > io('in.txt'); __END__ $ cat in.txt one two The action failed. three The action failed. twice The action failed. four $ cat in.txt one two failed_build three failed_build twice failed_build four

BR / Thanos

Seeking for Perl wisdom...on the process of learning...not there...yet!

Replies are listed 'Best First'.
Re^2: Replace strings in text file
by choroba (Cardinal) on Sep 21, 2018 at 09:05 UTC

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others contemplating the Monastery: (2)
As of 2024-04-19 01:25 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found