hey monks,
i got an xml-file containing something like this :
<fall_liste>
<fall ID="1">
<schein_liste>
<schein ID="1">
<fk8000 V="0132">
<fk7199 V="12" BKZ="%!" />
<fk3000 V="134520" />
<fk3101 V="Doe" />
<fk3102 V="Joe" />
.....
my code looks like this :
my $twig= new XML::Twig(twig_handlers => { '/kvdt/datei_liste/datei
+/fall_liste/fall' => \&fall }
sub fall{
my( $twig, $element)= @_;
my @scheine = $element->get_xpath('./schein_liste/schein/*/*');
for(@scheine){
<do various things>
}
my question is how can i do something like
($element->name eq "fk3101")?(print "Fall : " . $element->{att}->{ID} . " name : " . $_->{att}->{V}):(); ?
$element->name is obviously wrong, how can i address that node name ? (inside the for(){})
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.