Help for this page

Select Code to Download


  1. or download this
    use XML::Simple;
    use Data::Dumper;
    ...
    my $xs = new XML::Simple;
    my $xml = $xs->XMLout($hash, NoAttr => 1, RootName=>undef,);
    print Dumper $xml;
    
  2. or download this
    <root>
        <name>item1</name>
        <item1a>n1</item1a>
        <item1b>jh</item1b>
      </root>
    
  3. or download this
    <root>
        <item1>
    ...
          <item1b>jh</item1b>
        </item1>
      </root>