Hi,
I'm using PERL for the first time, and I need to parse an XML
Document.

Essentially we have a file that's structures like this

<A>
<B>
<C></C>
<C></C>
<C></C>
<C></C>
<C></C>
<C></C>
</B>
</A>

now when I do something like
$data = XMLin($XML, forcearray => ["C"]);

It has something similar to

$VAR1 = { B => { C => [ {1}, {2}. {3} ]}

Now accessing B is no problem, but I want to access the values in C..
do you know how this might be possible?

Thank you,
Vasant


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
http://learn.perl.org/


Reply via email to