in reply to Re: Duplicate entries with nested xml
in thread Duplicate entries with nested xml
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) +);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Duplicate entries with nested xml
by karlgoethebier (Abbot) on Sep 04, 2014 at 18:09 UTC | |
by Jenda (Abbot) on Sep 05, 2014 at 15:43 UTC |