Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re^4: How to return two and more values by parsing XML with XML::Rules?

by vagabonding electron (Curate)
on Nov 06, 2012 at 11:36 UTC ( [id://1002454]=note: print w/replies, xml ) Need Help??


in reply to Re^3: How to return two and more values by parsing XML with XML::Rules?
in thread How to return two and more values by parsing XML with XML::Rules?

Thank you very much!
I noticed now ( but somewhat late :-) ) that your point was yaml output. I have corrected the output presentation in the original post and in the reply to your post.
My main problem however ist that I need to represent the LK-Keys at the same hierarchy level as the AM-Keys. That is, I do need the Outpatient_Clinic_Special infos.
Thank you again for your time I will try to build on your code.
  • Comment on Re^4: How to return two and more values by parsing XML with XML::Rules?

Replies are listed 'Best First'.
Re^5: How to return two and more values by parsing XML with XML::Rules?
by Anonymous Monk on Nov 06, 2012 at 11:45 UTC

    My main problem however ist that I need to represent the LK-Keys at the same hierarchy level as the AM-Keys.

    Your updated output doesn't show that. Only AM04 is found in your sample data.

    Anyway, see Re: How to return two and more values by parsing XML with XML::Rules?, save the key callback

    my $amlk = sub { print $_->xpath, "\n"; push @amk, $_->trimmed_text; };

    Then register some twig_handlers

    'AM_Key' => $amlk, 'LK_Key' => $amlk,
      Your updated output doesn't show that.
      I am getting old ...
      I used your code with XML::Twig for LK_Keys Re^2: How to return two and more values by parsing XML with XML::Rules? but your recent proposal with the callback is of course much better and also shows that I have to learn much much more ...
      It is furthermore still the question for me what module should I use as a main option by parsing the data related xml-files?
      Thank you very much again!

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1002454]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (6)
As of 2024-04-26 08:57 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found