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