xsl-list
[Top] [All Lists]

Re: [xsl] eliminating multiple repeated tags in my XML

2008-03-07 15:02:51

ddo you mean ther emay be other elements in the same sequence, but you
just want to group related-article?

In which case (if there are no sibling text nodes)  something like

<xsl:for-each-group select="*"
group-adjacent="exists(self::related-article)">
  <xsl:choose>
    <xsl:when test="current-grouping-key()">
    <related-article><xsl:value-of
select="current-group()"/></related-article>
</xsl:when>
<xsl:otherwise>
  <xsl:copy-of select="current-group()"/>
</xsl:otherwise>
</xsl:choose>
</xsl:for-each-group>



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