Help for this page

Select Code to Download


  1. or download this
    $tmpl =~ s/@~(.*?)~@/$hash{$1}/g;
    
  2. or download this
    $tmpl =~ s/@~(.*?)~@/
        defined $hash{$1} ? $hash{$1}
      :                     croak("@~$1~@ not defined")
      /ge;