Help for this page

Select Code to Download


  1. or download this
    my $magic = sub {
        my $textref = shift;
        $textref =~ s/!!!blargle!!!/<tmpl_include $policy_file>/g;
    };
    
  2. or download this
    my $magic = sub {
        my $textref = shift;
        # note the extra $ on the $textref var
        $$textref =~ s/!!!blargle!!!/<tmpl_include $policy_file>/g;
    };