Help for this page

Select Code to Download


  1. or download this
    my $file = "abc.xml";        
    open INFO, "$file";
    ...
    print INFO $xml1;
    
    close INFO;
    
  2. or download this
    my $inp = "abc.xml";
    my $out = "new_abc.xml"; 
    ...
    
    print OUT join "", @array;