First - working code:
use strict; use warnings; my @config = qw|this oldtext needs replacement but not newtext Just ol +dtext|; for (@config) { s/oldtext/newtext/ } print qq|$_;\n| for @config; # "Perl" style print for my $t (0 .. $#config){ # Your style (c-style for loop) print "$t:$config[$t];\n"; }
Now - the stuff that appears not to have worked for you:
@config = map {s/oldtext/newtext/g; $_; } @config;
This works, but is way overkill.

First, omit the "@config =".

Then omit the $_. This works as well:

map {s/oldtext/newtext/g; } @config;
but then you may as well use the simpler:
s/oldtext/newtext/ for @config;
Which avoids generating a throw-away array, and is almost the same as your second attempt. (I would not use the "g" modified unless you were expecting multiple instances of the search string in one element of the array.)

Your print loop is attempting to apply two indexes to a single-dimension array.

            "XML is like violence: if it doesn't solve your problem, use more."


In reply to Re: String substitution inside an array by NetWallah
in thread String substitution inside an array by Monkomatic

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.