Help for this page

Select Code to Download


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