Q16: Is it possible to read in several documents from a stream?
You can read multiple documents from a stream by using the parse_start
method in place of of parse or parse_file, which creates a new instance of
XML::Parser::ExpatNB. Multiple documents are parsed by making successive
calls to the parse_more method. Calling the parse_done method signifies
that you
have are done processing the document.
Q17: How can I filter out extraneous whitespace whilst processing text?
You c