I've been writing some code that extracts the main textual content from web pages. One strategy that's been useful is to locate the first paragraph of content, then select all of the following sibling elements up to, but not including, the first one that isn't a p, ul, ol, or blockquote element. In Perl, the code looks something like this:
my ($firstpara) = $document->findnodes('//p[whatever]');
my @content = ($firstpara);
for my $sibling ($firstpara->findnodes('following-sibling::*')) {
last if $sibling->tag !~ /^(?:p|ol|ul|blockquote)\z/;
push @content, $sibling;
}
This isn't too bad, but it would be cool to be able to get the nodes I want using only XPath, so I could write something like this instead:
my ($firstpara) = $document->findnodes('//p[whatever]');
my @content = ($firstpara, $firstpara->findnodes('<query>'));
I've done a lot of experimentation, but haven't been able to figure out how to write that last query. The closest to a valid-looking solution I've been able to find is something like:
$firstpara->findnodes('following-sibling::*[position() < $EXPR]');
...where $EXPR is some expression that returns the position of the next sibling whose tag is not p, ul, ol, or blockquote, but I haven't been able to work out if such an expression is expressible in XPath.
Is there any way to do what I've described in XPath?
Example:
Suppose my document looks like this:
<h1>Header</h1>
<p>Paragraph 1</p>
<p id="first">Paragraph 2</p>
<p>Paragraph 3</p>
<ul><li>Item 1</li><li>Item 2</li></ul>
<p>Paragraph 4</p>
<hr>
<p>Paragraph 5</p>
<blockquote>Blockquote 1</blockquote>
...
I have a reference to the <p> element with id first. I'm after an XPath expression, using that first element as the content node, that will give me the following siblings Paragraph 3, the unordered list, and Paragraph 4. The <hr> element is not among those I want (<p>, <ul>, <ol>, and <blockquote>), so that element and all siblings after that should not be part of the returned node set.
