in reply to substitution not recompile
Flavio$template = "some sentence x"; $val = 1; while ($val < 5) { $foo = $template; $foo =~ s/x/$val/; print "$val $foo\n"; $val++; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: substitution not recompile
by manav (Scribe) on Mar 24, 2005 at 15:30 UTC |