in reply to String substitution inside an array
Now - the stuff that appears not to have worked for you: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"; }
This works, but is way overkill.@config = map {s/oldtext/newtext/g; $_; } @config;
First, omit the "@config =".
Then omit the $_. This works as well:
but then you may as well use the simpler:map {s/oldtext/newtext/g; } @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.)s/oldtext/newtext/ for @config;
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 | |
by Monkomatic (Sexton) on Sep 09, 2011 at 05:57 UTC |