Search Results

0
votes

Which HTML element has the largest number of children of a certain type, for instance tags?

A very brute force solution in Perl, using XML::Twig: #!/usr/bin/perl use strict; use warnings; use XML::Twig; my $max=0; # max number of p's my $path; # path to the element XM …
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! …
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, …
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 …
3
votes

Xpath query to find elements which contain a certain descendant

"has a descendant named interestintag" is spelled .//interestintag in XPath, so the expression you are looking for is: //table[@name='important']/tr[.//interestingtag] …