in reply to XML package for parsing values in the opening tag.
Any proper XML module will do that: XML::Parser (on its way to deprecation except as a low-level layer used by more convenient modules), XML::LibXML, XML::Simple, XML::Smart, XML::Twig, XML::SAX::PurePerl... XML::Parser::Lite is _not_ a real XML parser, it is designed to parse SOAP messages, which only use a subset of the XML recommendation.
As you mention you have problems with spaces in attributes, note that XML parsers are required to normalize attribute values, see The Annotated XML Specification. I don't think that's what your problem is here, but just in case, I thought I'd mention it.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: XML package for parsing values in the opening tag.
by dwatson06 (Friar) on Apr 14, 2004 at 15:13 UTC | |
by waswas-fng (Curate) on Apr 14, 2004 at 18:28 UTC | |
by gmpassos (Priest) on Apr 15, 2004 at 07:11 UTC |