Help for this page

Select Code to Download


  1. or download this
     use XML::XSLT;
    
    ...
     print $xslt->toString;
    
     $xslt->dispose();
    
  2. or download this
      use XML::LibXSLT;
      use XML::LibXML;
    ...
      my $results = $stylesheet->transform($source);
    
      print $stylesheet->output_as_bytes($results);