Logo

Programming-Idioms

History of Idiom 103 > diff from v7 to v8

Edit summary for version 8 by daxim:
New Perl implementation by user [daxim]

Version 7

2018-04-08, 07:25:34

Version 8

2019-09-27, 23:51:17

Idiom #103 Load XML file into struct

Read from file data.xml and write its content into object x.
Assume the XML data is suitable for the type of x.

Idiom #103 Load XML file into struct

Read from file data.xml and write its content into object x.
Assume the XML data is suitable for the type of x.

Imports
use XML::LibXML qw();
Code
my $x = XML::LibXML->load_xml(
location => 'data.xml');
Doc URL
http://p3rl.org/XML::LibXML