[XSL-LIST Mailing List Archive Home] [By Thread] [By Date]

Re: [xsl] Output flat file results 2 nodes at a time?


Subject: Re: [xsl] Output flat file results 2 nodes at a time?
From: David Carlisle <davidc@xxxxxxxxx>
Date: Wed, 9 May 2007 14:20:22 +0100

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  
 <xsl:output method="text"/>

 <xsl:template match="shipment">
   <xsl:text>&#10;REC1*</xsl:text>
   <xsl:value-of select="header/shipmentId"/>
   <xsl:for-each select="detail/po">
     <xsl:if test="position() mod 2 = 1">&#10;REC2</xsl:if>
     <xsl:text>*</xsl:text>
     <xsl:value-of select="."/>
   </xsl:for-each>
   <xsl:for-each select="detail/containers/box">
     <xsl:if test="position() mod 4 = 1">&#10;REC3</xsl:if>
     <xsl:text>*</xsl:text>
     <xsl:value-of select="."/>
   </xsl:for-each>
 </xsl:template>
</xsl:stylesheet>



$ saxon po.xml po.xsl

REC1*DELIVERY 1
REC2*PO 1*PO 2
REC2*PO 3
REC3*BOX 1*BOX 2*BOX 3*BOX 4
REC3*BOX 5*BOX 6*BOX 7


David

________________________________________________________________________
The Numerical Algorithms Group Ltd is a company registered in England
and Wales with company number 1249803. The registered office is:
Wilkinson House, Jordan Hill Road, Oxford OX2 8DR, United Kingdom.

This e-mail has been scanned for all viruses by Star. The service is
powered by MessageLabs. 
________________________________________________________________________


Current Thread