vote up 0 vote down star

I'm using Html Agility Pack to run xpath queries on a web page. I want to find the rows in a table which contain a certain interesting element. In the example below, I want to fetch the second row.

<table name="important">
<tr>
  <td>Stuff I'm NOT interested in</td>
</tr>
<tr>
  <td>Stuff I'm interested in</td>
  <td><interestingtag/></td>
  <td>More stuff I'm interested in</td>
</tr>
<tr>
  <td>Stuff I'm NOT interested in</td>
</tr>
<tr>
  <td>Stuff I'm NOT interested in</td>
</tr>
</table>

I'm looking to do something like this:

//table[@name='important']/tr[has a descendant named interestingtag]

Except with valid xpath syntax. ;-)

I suppose I could just find the interesting element itself and then work my way up the parent chain from the node that's returned, but it seemed like there ought to be a way to do this in one step and I'm just being dense.

flag

2 Answers

vote up 3 vote down check

"has a descendant named interestintag" is spelled .//interestintag in XPath, so the expression you are looking for is:

//table[@name='important']/tr[.//interestingtag]
link|flag
That works. Thanks! – Jeremy Stein Jul 7 at 18:31
vote up 5 vote down

Actually, you need to look for a descendant, not a child:

//table[@name='important']/tr[descendant::interestingtag]
link|flag
or, @mirod's way would work too. :-) – ScottSEA Jul 7 at 18:31
Excellent. That's very helpful. Sorry I can't accept two answers! – Jeremy Stein Jul 7 at 18:33
1  
I always find it fun how many ways there are to get the desired result in XPath. I believe //table[@name='important']//interestingtag//ancestor::tr should work too I believe. – mirod Jul 7 at 18:35
@Jeremy Stein: No problem, he beat me to it fair & square. :-) – ScottSEA Jul 7 at 19:12
+1 for using the "descendant" axis. More readable than the ".//" shorthand, IMHO. – Tomalak Jul 8 at 8:25
show 2 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.