↧
Answer by Miller for Issue with XML::Bare
If XML::Bare or XML::Simple are used, they should be limited to only the most basic XML reading. Given that your data has an attribute and child node that share a name fails that limitation.In truth...
View ArticleAnswer by toolic for Issue with XML::Bare
It looks like a bug in XML::Bare. I don't see the <num> element in Dumper output:use warnings;use strict;use XML::Bare;my $xml = q(<xml><element...
View ArticleIssue with XML::Bare
I'm using XML::Bare module in Perl.My XML is something like:<xml><element num="1"><num>10</num></element><element...
View Article