in reply to How can one re-parse(?) a string to fill in variables

These days, why not just use double-quotes to interpolate the string. #!/usr/bin/perl -w use strict; my $name = 'Alex'; my $greeting = "Hello $name"; print $greeting
  • Comment on Re: How can one re-parse(?) a string to fill in variables

Replies are listed 'Best First'.
Re: Answer: How can one re-parse(?) a string to fill in variables
by Corion (Patriarch) on Oct 31, 2013 at 14:07 UTC