This question is analogous to HTML::PullParser splits up text element randomly. Basically I'm running XML::Parser and when it gets strings back, it breaks them into multiple pieces (to speed things up, I suppose). But what can I do to prevent this behavior? I can't seem to find anything in the doc for that module or for the XML::Parser::Expat.
| ||||
|
feedback
|
|
I don't know this parser in particular, but it's a common feature of streaming parsers that the spec allows them to split text nodes wherever they like. In many cases they take advantage of this to split the text at entity boundaries (avoiding a string copy operation), but they can also do it at I/O buffer boundaries, for example. You either have to live with it, assembling the text yourself at application level, or use a higher-level interface for XML processing, such as XSLT or XQuery. | |||
feedback
|
| |||
feedback
|