I was referring to the yaml, and FWIW, ysh doesn't like that YAML, which I assume is supposed to be
This is what I came up with, which took waaay too long, the rules are hard to remember
#!/usr/bin/perl --
use strict; use warnings;
use XML::Rules;
use Data::Dump qw/ dd /;
my $ta = XML::Rules->new(
qw/ stripspaces 8 /,
rules => {
'Outpatient_Services' => 'no content',
'Outpatient_Service' => 'as array no content',
#~ 'Outpatient_Clinic' => 'content by AM_Key',
'Outpatient_Clinic' => sub {
#~ $rule->( $tag_name, \%attrs, \@context, \@parent_data, $parser)
#~ my ($tagname, $attrHash, $contexArray, $parentDataArray, $parser) =
+ @_;
my $amk = $_[1]->{AM_Key} ;
return unless $amk;
{ $amk => 1 };
},
#~ _default => sub { $_[0] => $_[1]->{_content} },
_default => 'content',
'Outpatient_Clinic_Special' => undef,
},
);
my $ref = $ta->parsefile( 'pm1002448.xml' );
dd $ref;
use YAML(); print YAML::Dump( $ref);
__END__
{
Outpatient_Services => {
Outpatient_Service => [
{ AM01 => 1 },
{ AM01 => 1 },
{ AM02 => 1 },
{},
{ AM04 => 1 },
{},
],
},
}
---
Outpatient_Services:
Outpatient_Service:
- AM01: 1
- AM01: 1
- AM02: 1
- {}
- AM04: 1
- {}
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
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, 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, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
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.
|
|