xsl-list
[Top] [All Lists]

Re: [xsl] Newbie Q - transformation

2007-08-26 09:10:23
Hello John,

you would us very much if you supply some more information.
- XSLT Version
- Used stylesheet-processor

When you use XSLT 1.0, it would possibly be enough to do something like:

<xsl:template match="plus">
  <xsl:copy>
    <xsl:copy-of select="preceding-sibling::node()[1][self::a]" />
    <xsl:copy-of select="following-sibling::node()[1][self::b]" />
  </xsl:copy>
</xsl:template>

Greetings
Christoph

John Smith schrieb:
Hello,

how can I transform this:

<a/>
<plus/>
<b/>

to this:
<plus>
<a/>
<b/>
</plus>

Thanks,

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

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