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);

Replies are listed 'Best First'.
A reply falls below the community's threshold of quality. You may see it by logging in.