Help for this page

Select Code to Download


  1. or download this
        while ($text =~ s/
               ^(.*?)               # $1 - start of line up to directive
    ...
                $end            # end of tag
                )
               //sx) {
    
  2. or download this
    #!/usr/bin/perl
    
    ...
    $template->process(\$text, {});
    
    print "Processed\n";