xsl-list
[Top] [All Lists]

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

2007-05-09 07:14:03

(ah, I see that David beat me to it with a much shorter approach ;)

Nah, that was the long approach, the shorter approach is just to use a
single xpath 2 expression:



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

 <xsl:template match="shipment">
   <xsl:value-of select="'&#10;REC1*',header/string(shipmentId),
                         detail/po/(if(position() mod 2 = 1) then '&#10;REC2*' 
else '*', string()),
                         detail/containers/box/(if(position() mod 4 = 1) then 
'&#10;REC3*' else '*',string())"
                 separator=""/>
 </xsl:template>
</xsl:stylesheet>

________________________________________________________________________
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>
--~--