xsl-list
[Top] [All Lists]

Re: [xsl] read array

2011-12-21 05:46:45
On 21/12/2011 11:42, henry human wrote:
The XML

  <?xml version="1.0"?>
<root>
<Invoice>
<DocumentReference>
<ID>100</ID>
</DocumentReference>
</Invoice>
<Invoice>
<DocumentReference>
<ID>200</ID>
</DocumentReference>
</Invoice>
</root>

   Output should be: 1.100_2.200

best regards


xslt2
<xsl:value-of select="//ID" separators="_"/>

xslt1

<xsl:value-of select="concat((//ID)[1],'_',(//ID)[2])"/>

if 2 was just an example and it could be more, the xslt2 one will cope for xslt 1 you may prefer

<xsl:for-each select="//ID">
<xsl:if test="position()!=1">_</xsl:if>
<xsl:value-of select="."/>
</xsl:for-each>

David


--
google plus: https:/profiles.google.com/d.p.carlisle

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

<Prev in Thread] Current Thread [Next in Thread>