http://www.perlmonks.org?node_id=246022


in reply to Simple Search and Replace?

Hi ,

The assignment of file contents to an array surely depends on the size of the file .The file , if it has a larger size will consume whole of the memory either dumping core or exiting out with some untrappable error. Hence people tend to use while to read and print in the write file
while (<readthefile>) $_ =~ s///g; print WriteData "$_"; print "$/"; }


The read os data if it is small in size you could set  $/ = undef; and slurp the file contents to a ascalar variable itself and then do the regular expression on it .