-1
votes
How can I split an XML document into thirds (or, even better, n pieces)?
If you are not completely allergic to Perl, then XML::Twig comes with a tool named …
8
votes
How can I prevent XML::XPath from fetching a DTD while processing an XML file?
XML::XPath is based on XML::Parser. There is an option in XML::Parser to NOT use LWP to resolve external entities (such as DTDs). And XML::XPath lets you pass an XML::Parser objetc, to use as the p …
2
votes
How can I anonymise XML data for selected tags?
Using regexps is indeed dangerous, unless you know exactly the format of the file, it's easy to parse with regexps, and you are sure that it will not change in the future.
Otherwise you cou …
2
votes
What is an XML parser? Using Expat
Instead of expat, you might want to have a look at libxml2, which is probably already included in your distribution. It's a lot more powerful than expat, and gives you all sorts of goodies: DOM (tr …
0
votes
Navigating to nodes using xpath in flat structure
I am not sure you really want to go there: the simplest I found was to go from the author, get the previous title, then check that the first author or title following was indeed a title. Ugly!
…
3
votes
what actually is PCDATA and CDATA?
Both PCDATA and CDATA are parsed. They are both character data.
They both must only include valid characters. For example if your document encoding is UTF-8, the content of CDATA s …
1
vote
How to parse XML in Bash?
I am not aware of any pure shell XML parsing tool. So you will most likely need a tool written in an other language.
My XML::Twig Perl module comes with such a tool: xml_grep, …
7
votes
How can I mine an XML document with awk, Perl, or Python?
I have written a tool called xml_grep2, based on XML::LibXML, the perl interface to …
4
votes
How to use XML::XPath to get parent node?
As Chas mentioned, you should not create a second XML::XPath object (the docs mention this too). You can either pass pass the context as the second parameter of the find* methods, or simply call th …
1
vote
Survey: how are you using ID/IDREF? (or key/keyref)
I mostly use XML for publishing, not to store data, so I use ID/IDREFs for links and cross-references (where the content of the element with the IDREF will be pulled from the element with the ID). …
3
votes
How can I convert an XML processing instruction to a tag using Perl?
Oddly enough I would use XML::Twig for that:
#!/usr/bin/perl
use strict;
use warnings;
use XML::Twig;
XML::Twig- …
3
votes
Converting XML input from multiple lines to one line
[XML::Twig][1] comes with an xml pretty printer xml_pp. If the address lines are right under the root of the document, then you can use it to get real close to your desired output:
…
3
votes
How can I extract some XML data from a URL using XML::Twig?
nparse takes care of the new for you (hence the 'n'), what you want in this case is probably xparse, or just let the module figure it out and do this:
my $ …
3
votes
What would be your choice of Perl XML Parsers for files greater than 15 GB?
As you would expect I would suggest XML::Twig, which will let you process the file chunk-by-chunk. This of course assumes that you …
5
votes
How should I parse large XML files in Perl?
For large XML files, you can either use XML::LibXML, in DOM mode if the document fits in memory, or using the pull mode (see …
