Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Hi I have a xml data which i get from array of hashes and when I do a Dumper on it the output is as follows:

$var1=
    '<Data>
            <Data1>ABC</Data1>
            <Data2>ABCD</Data2>
    </Data>';

This I have in a variable call $var1. Now I am using XML::Simple on it.. it is somewhat like: {Data1=>'ABC',Data2=>'ABCd'};

The first tag Data is gone. What is wrong?

share|improve this question
Show your code. – edem Jan 26 at 23:25

1 Answer

Seems to be well-documented:

KeepRoot => 1:

In its attempt to return a data structure free of superfluous detail and unnecessary levels of indirection, XMLin() normally discards the root element name. Setting the KeepRoot option to 1 will cause the root element name to be retained. So after executing this code:

     $config = XMLin('<config tempdir="/tmp" />', KeepRoot => 1)

You'll be able to reference the tempdir as "$config->{config}->{tempdir}" instead of the default "$config->{tempdir}".

share|improve this answer
I'll try this.. Thanx.. – user2013387 Jan 26 at 23:26
So this '<config tempdir="/tmp" /> in that "/tmp"/ is what a file name?? I am using a variable her the $var1 i mentioned above.. – user2013387 Jan 26 at 23:31
3  
<config ...> is just an example piece of XML, disregard it. Your problem is addressed by passing KeepRoot => 1 into XMLin: my $var2 = XMLin($var1, KeepRoot => 1). Now the result will have one Data key at the topmost level, representing your outer XML tag. – Anton Kovalenko Jan 26 at 23:39
Ya it worked.. thanx.. – user2013387 Jan 26 at 23:53
don't forget to accept an answer eventually. – Anton Kovalenko Jan 27 at 0:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.