- or download this
<book>
<author>Book 1 author 1</author>
...
<title>Book 1 title</title>
<isbn>Book1ISBN</isbn>
</book>
- or download this
#!/usr/bin/perl
# Script to illustrate how to parse a simple XML file
...
my $booklist = XMLin('booklist.xml');
print Dumper($booklist);
- or download this
$VAR1 = {
'book' => {
...
}
}
- or download this
$VAR1 = {
'book' => {
...
}
}