What XPath selects odd TRs from a table, starting with the third? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T15:26:37Z http://stackoverflow.com/feeds/question/1081394 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1081394/what-xpath-selects-odd-trs-from-a-table-starting-with-the-third 2 What XPath selects odd TRs from a table, starting with the third? Gordon 2009-07-04T03:01:17Z 2009-07-04T04:44:45Z <p>I have a table:</p> <p>&lt;table&gt;<br /> &lt;tr&gt;&lt;td&gt;1&lt;/td&gt;&lt;/tr&gt;<br /> &lt;tr&gt;&lt;td&gt;2&lt;/td&gt;&lt;/tr&gt;<br /> &lt;tr&gt;&lt;td&gt;3&lt;/td&gt;&lt;/tr&gt;<br /> &lt;tr&gt;&lt;td&gt;4&lt;/td&gt;&lt;/tr&gt;<br /> &lt;tr&gt;&lt;td&gt;5&lt;/td&gt;&lt;/tr&gt;<br /> &lt;tr&gt;&lt;td&gt;6&lt;/td&gt;&lt;/tr&gt;<br /> &lt;tr&gt;&lt;td&gt;7&lt;/td&gt;&lt;/tr&gt;<br /> &lt;tr&gt;&lt;td&gt;8&lt;/td&gt;&lt;/tr&gt;<br /> &lt;tr&gt;&lt;td&gt;9&lt;/td&gt;&lt;/tr&gt;<br /> &lt;/table&gt;</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#1081412 2 Answer by Ratnesh Maurya for What XPath selects odd TRs from a table, starting with the third? Ratnesh Maurya 2009-07-04T03:16:16Z 2009-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>&lt;xsl:for-each select="tr"&gt; &lt;xsl:choose&gt; &lt;xsl:when test="position() mod 2 = 1 and position() &gt; 1"&gt; ...do smthng .... &lt;/xsl:when&gt; &lt;xsl:otherwise&gt;...do something else...&lt;/xsl:otherwise&gt; &lt;/xsl:choose&gt; &lt;/xsl:foreach&gt; </code></pre> http://stackoverflow.com/questions/1081394/what-xpath-selects-odd-trs-from-a-table-starting-with-the-third/1081427#1081427 5 Answer by lavinio for What XPath selects odd TRs from a table, starting with the third? lavinio 2009-07-04T03:29:29Z 2009-07-04T04:44:45Z <pre><code>"/table/tr[position() mod 2 = 1 and position() &amp;gt; 1]" </code></pre>