Subject: Re: Output flat file results 2 nodes at a time?
From: David Carlisle <davidc@xxxxxxxxx>
Date: Wed, 9 May 2007 15:13:41 +0100
|
> (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="' REC1*',header/string(shipmentId),
detail/po/(if(position() mod 2 = 1) then ' REC2*' else '*', string()),
detail/containers/box/(if(position() mod 4 = 1) then ' 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.
________________________________________________________________________
|