2013-06-04 2 views
0

foreach 루프에서 동일한 문에서보다 크거나 작은 위치를 얻는 것이 가능합니다.XSLT 1.0 Foreach보다 작거나 같음

은 현재 내가 <xsl:for-each select="(/*/Request/InvoiceDetailRequest/InvoiceDetailOrder/InvoiceDetailItem)[10 &gt;= position()]">

을하지만

이 나던 작업 <xsl:for-each select="(/*/Request/InvoiceDetailRequest/InvoiceDetailOrder/InvoiceDetailItem)[10 &gt;= position()] and [10 &lt;= position()">를 원한다.

(....)[(10 &gt;= position()) and (5 &lt;= position())] 

답변

0

대괄호의 동일한 세트의 술어 조건의 두 반쪽을 넣어
+0

들으 완벽하게 작동합니다 : –