Help for this page

Select Code to Download


  1. or download this
    use XML::Simple;
    my $struct = XMLin( \*DATA );
    ...
                    <value>hello3</value>
            </level3>
    </myconfig_data>
    
  2. or download this
    <opt>
      <name>aaa</name>
    ...
        <value>hello3</value>
      </level3>
    </opt>
    
  3. or download this
    use Data::Dumper;
    
    ...
                    <value>hello3</value>
            </level3>
    </myconfig_data>
    
  4. or download this
    $VAR1 = {
              'level1' => {
    ...
                            'value' => 'hello3'
                          }
            };