Help for this page

Select Code to Download


  1. or download this
    use 5.014;
    use XML::Simple;
    
    my $xmls = XMLin($xml_string);
    say $_->{AttrValue} for grep { $_->{AttrName} eq 'ref_num' }
                            @{$xmls->{Attributes}->{Attribute}};
    
  2. or download this
    use Data::Dump;
    
    dd $xmls;