Help for this page

Select Code to Download


  1. or download this
    my $ref = XMLin([<xml file or string>] [, <options>]);
    
  2. or download this
        my $pid;
    
    ...
        open OUT, ">out";
        print OUT $_ for <DUMP>;
        close OUT;
    
  3. or download this
        use XML::Simple;
        my $data = join '', <DUMP>;
        my $ref = XMLin($data);