[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

RE: concatenate multiple attribute values and assign i

Subject: RE: concatenate multiple attribute values and assign it to another attribute
From: "Michael Kay" <mike@xxxxxxxxxxxx>
Date: Thu, 29 Mar 2007 22:00:57 +0100
RE:  concatenate multiple attribute values and assign i
> I am trying to concat the value of multiple occurence of an 
> attribute output it as an attribute once.
> 
> <test node att1="1" att2="a" />
> <test node att1="2" att2="b" />
> <test node att1="3" att2="c" />
> <test node att1="4" att2="d" />
>  
> I want to output this as
> <testnode att1="1,2,3,4" att2="a,b,c,d" />

In XSLT 2.0 (correcting your XML input)

<testnode>
  <xsl:attribute name="att1" select="testnode/@att1" separator=","/>
  <xsl:attribute name="att2" select="testnode/@att2" separator=","/>
</testnode>

In 1.0

<testnode>
  <xsl:attribute name="att1">
    <xsl:for-each select="testnode">
      <xsl:value-of select="@att1"/>
      <xsl:if test="position()!=last()">,</xsl:if>
etc.

Michael Kay
http://www.saxonica.com/

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.