http://www.perlmonks.org?node_id=979704


in reply to Re^2: XML::Twig help
in thread XML::Twig help

There are several ways to get the data. first_child only goes down 1 step in the tree. To get the text, you would need $drug->first_child('groups')->field( 'group'), or $drug->next_elt( 'groups')->text or $drug->findvalue( 'groups/group'). INTEREST1 is an attribute, so you would get it with $drug->att( 'type').

There is probably a problem though either with your simplified data or with the code. You have te tags in your example as data1 and data2. If this is really the case, then you won't access them with $root->children('data'), since the tags are NOT data. So either the tags are data, or you have to get them using $root->children.

Replies are listed 'Best First'.
Re^4: XML::Twig help
by yesitsjess (Initiate) on Jul 05, 2012 at 10:36 UTC

    Thank you, that is very helpful. And yes the tags data1 data2 should just be data, that was my mistake :)