xsl-list
[Top] [All Lists]

RE: Converting XML to XML

2005-08-17 04:17:12
 Hello,

   I have written small program to convert XML to XML.
   But each XML tag contains
xmlns:fo="http://www.w3.org/1999/XSL/Format"; as a attribute. How to
avoid this?


-----Original Message-----
From: Michael Kay [mailto:mike(_at_)saxonica(_dot_)com] 
Sent: Wednesday, August 17, 2005 4:40 PM
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Subject: RE: [xsl] Converting XML to XML

 

      Is it possible to convert XML to XML using XSLT ?

Yes, that's precisely what XSLT does.


In my case Source is :
<a>
<b>
</b>
<c>
</c>
</a>

Destination is :

<x>
<y>
</y>
<z>
</z>
</x>

Please provide me some sample code.
      
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>

<xsl:template match="a">
  <x><xsl:apply-templates/></x>
</xsl:template>

<xsl:template match="b">
  <y><xsl:apply-templates/></y>
</xsl:template>

<xsl:template match="c">
  <z><xsl:apply-templates/></z>
</xsl:template>

</xsl:stylesheet>


Michael Kay
http://www.saxonica.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>
--~--


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