in reply to how does XML::DOM loadXML?
As you were told in the chatterbox, XML::DOM is a subclass of XML::Parser, so it inherits that module's parse method.
my $xml = 'string containing some xml'; my $parser = XML::DOM::Parser->new; $parser->parse($xml);
"The first rule of Perl club is you do not talk about
Perl club."
-- Chip Salzenberg
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
| A reply falls below the community's threshold of quality. You may see it by logging in. |