What XPath selects odd TRs from a table, starting with the third? - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T15:26:37Zhttp://stackoverflow.com/feeds/question/1081394http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1081394/what-xpath-selects-odd-trs-from-a-table-starting-with-the-third2What XPath selects odd TRs from a table, starting with the third?Gordon2009-07-04T03:01:17Z2009-07-04T04:44:45Z
<p>I have a table:</p>
<p><table><br />
<tr><td>1</td></tr><br />
<tr><td>2</td></tr><br />
<tr><td>3</td></tr><br />
<tr><td>4</td></tr><br />
<tr><td>5</td></tr><br />
<tr><td>6</td></tr><br />
<tr><td>7</td></tr><br />
<tr><td>8</td></tr><br />
<tr><td>9</td></tr><br />
</table></p>
<p>I need an XPath to select odd rows, starting on the third row (3, 5, 7, 9, etc.).</p>
http://stackoverflow.com/questions/1081394/what-xpath-selects-odd-trs-from-a-table-starting-with-the-third/1081412#10814122Answer by Ratnesh Maurya for What XPath selects odd TRs from a table, starting with the third?Ratnesh Maurya2009-07-04T03:16:16Z2009-07-04T03:24:50Z<p>I think 'position()' function of XPATH will do the job. Returns the index position of the node that is currently being processed. you need to do position() mod 2.</p>
<p>Here is XSLT solution</p>
<pre><code><xsl:for-each select="tr">
<xsl:choose>
<xsl:when test="position() mod 2 = 1 and position() > 1">
...do smthng ....
</xsl:when>
<xsl:otherwise>...do something else...</xsl:otherwise>
</xsl:choose>
</xsl:foreach>
</code></pre>
http://stackoverflow.com/questions/1081394/what-xpath-selects-odd-trs-from-a-table-starting-with-the-third/1081427#10814275Answer by lavinio for What XPath selects odd TRs from a table, starting with the third?lavinio2009-07-04T03:29:29Z2009-07-04T04:44:45Z<pre><code>"/table/tr[position() mod 2 = 1 and position() &gt; 1]"
</code></pre>