|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] RE: Can I use xslt to change xml tag names?
> I have the following xml file:
>
> <?xml version="1.0" encoding="UTF-8"?>
> <dogs dog-count="2">
> <all-dogs age="3">
> <color>black</color>
> <feeling>hungry</feeling>
> <name>Puppy</name>
> </all-dogs>
> <all-dogs age="2">
> <color>white</color>
> <feeling>full</feeling>
> <name>Snow</name>
> </all-dogs>
> </dogs>
>
> I want to change the tag name <dogs> into <rowset> and
> the <all-dogs> into <row>. Can I use xslt to do it? I
> only saw how to transform xml to html using xslt.
Absolutely you can - you can transform xml into xml with xslt.
<xsl:template match="dogs">
<rowset row-count="{dog-count}">
<xsl:apply-templates"/>
</rowset>
</xsl:template>
<xsl:template match="all-dogs">
<row>
<xsl:apply-templates"/>
</row>
</xsl:template>
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








