Help for this page
my $template = snarf('template.htm'); while ($template =~ /(\$[:alpha:]\w*)/g) { ... $template =~ s/\Q$variable_name\E/$value/g; } print $template;