This part:
my $file = qq(appsimage_EBSB4.xml); open my $fh, '<', $file; binmode $fh; my $doc = XML::LibXML->load_xml(IO => $fh); close $fh;
Could be written more succinctly as:
my $doc = XML::LibXML->load_xml( location => qq(appsimage_EBSB4.xml) +);
In reply to Re^2: Duplicate entries with nested xml
by tobyink
in thread Duplicate entries with nested xml
by Raghu.S
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |