xsl-list
[Top] [All Lists]

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

2007-05-09 06:20:42
<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. 
________________________________________________________________________

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--