xsl-list
[Top] [All Lists]

Re: Root element attributes

2005-11-04 05:05:00

There is no such thing as a "root element" in xslt, and nothing special
about the top level element, or attributes in the xsi namespace.
So your question appears to be "how do I use XSLT?"

It appears you want to change sample to test and copy all attributes and
children so

<xsl:template match="sample">
<test>
<xsl:copy-of select="@*|node()"/>
</test>
</xsl:template>

(Your first posting said your input was <Sample> your second posting
said it is <sample> which is a different element, XML is case sensitive)


________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

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