xsl-list
[Top] [All Lists]

RE: [xsl] help in xslt2 grouping

2007-07-06 05:39:25
So what happened to row6?

I imagine what you probably want is

<xsl:template match="root">
  <xsl:for-each-group select="*" group-starting-with="elem[title]">
    <xsl:copy-of select="title"/>
    <xsl:for-each select="current-group()[position() gt 1]">
      <content><xsl:value-of select="."/></content>
    </
  </
</


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

-----Original Message-----
From: alex v. [mailto:alex(_dot_)vett(_at_)gmail(_dot_)com] 
Sent: 06 July 2007 13:20
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Subject: [xsl] help in xslt2 grouping

hi all,
I need to group in XSLT2 'elem' that have a child 'title'.
The XML is:

<root>
 <elem><title>row1</title></elem>
 <elem>row2</elem>
 <elem><title>row3</title></elem>
 <elem><title>row4</title></elem>
 <elem>row5</elem>
 <elem>row6</elem>
</root>


and the result:

<root>
<elem>
  <title>row1</title>
  <content>row2</content>
</elem>
<elem>
  <title>row3</title>
  <content>row4</content>
  <content>row5</content>
</elem>
</root>

I use Saxon and XSLT2.

Regards,
alex.
~alex

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



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