I have spent hours on attempting to figure out why my simple search/replace string in a text file is not doing any replacing. I looked in online forums, but I believe this script is correct. Is there anything that would prevent a search/replace? My file is not read only. Also, when I print @lines to a log file, it actually prints the lines from the text file that I want to do a search/replace.

The file is called Mark.txt and only has one value "NAME". It is my test before I begin to do search/replace on a real file.

Any help would be appreciated. Thanks.

#!/usr/bin/perl use File::Find; open (logfilefsv, '>>logfsv.txt'); $file = "C:/TestPerlFSV/Mark.txt"; open(IN, "+<$file"); #my $old = "N"; #my $new = "M"; @lines=<IN>; print logfilefsv @lines; foreach $file (@lines) {s/N/M/gi;}


In reply to Search Replace String Not Working on text file by msstein

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.