How can an XML fragment be returned with XSL?
Created May 4, 2012
Thomas BROYER What you need is xsl:copy-of.
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:template match="/Numbers"> <xsl:copy-of select="Number[1]"> </xsl:template> </xsl:stylesheet>