I am a perl newbie and i need help in parsing xml using perl.
Consider the following as my xml file
<A>
<B1>
</B1>
<B2>
</B2>
<B3>
<c1>
</c1>
<c2>
</c2>
<c3>
</c3>
</B3>
</A>
I need to extract the element B3 alone along with it's child nodes.
I am using XML:Simple to parse the xml file.
How to parse the element B3 alone into a variable so that I can use foreach to extract the child nodes.....?
Thanks in advance...!!