I have found this site which says that I can pick a specific node of this code
<xsl:variable name="in-xml" as="item()*"> <in-xml>
<a>1</a>
<c>2</c>
<a>3</a>
<a>4</a>
<a>5</a> </in-xml> </xsl:variable>
It says that if you wrote this:
$in-xml/*[position() > 2]
you would get this:
<a>3</a>
<a>4</a>
<a>5</a>
but it seems not to be working for me. Here is the site: http://www.xsltfunctions.com/xsl/fn_position.html
Can anyone give the code to get that???