in reply to String substitution inside an array

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."

Replies are listed 'Best First'.
Re^2: String substitution inside an array
by Monkomatic (Sexton) on Sep 09, 2011 at 05:51 UTC

    Thanks. That helps alot.

    "Which avoids generating a throw-away array"

    Thats exactly how i was going to solve it :). Build another array and replace. Thought about it after i posted.

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

      Love that :)