This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

RE: transforming XML into XML using XSLT.


Thank you.
Please find below the Input XML file , Required Output XML file and the
XSLT I had developed.


Input XML File

<?xml version="1.0" encoding="ISO-8859-1"?>
<?xml-stylesheet type="text/xsl" href="designCatalog.xsl"?>
<catalog>
	<cd>
		<title>Empire Burlesque</title>
		<artist>Bob Dylan</artist>
		<country>USA</country>
		<company>Columbia</company>
		<price>10.90</price>
		<year>1985</year>
	</cd>
	<cd>
		<title>Hide your heart</title>
		<artist>Bonnie Tyler</artist>
		<country>UK</country>
		<company>CBS Records</company>
		<price>9.90</price>
		<year>1988</year>
	</cd>
</catalog>


Required Output XML.


<?xml version="1.0" encoding="ISO-8859-1"?>
<catalog>
	<cd>
		<title>Empire Burlesque</title>
		<artist>Bob Dylan</artist>
	</cd>
	<cd>
		<title>Hide your heart</title>
		<artist>Bonnie Tyler</artist>
	</cd>
</catalog>


XSLT used:

<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>
<xsl:output type="xml"/>
<xsl:template match="/">
	<catalog>
		<xsl:for-each select="catalog/cd">
		<cd>
			<xsl:value-of select="title"/>
			<xsl:value-of select="artist"/>
		</cd>
		</xsl:for-each>
	</catalog>
</xsl:template>
</xsl:stylesheet>

I don't have an exclusive processor , I am viewing the output in
Internet explorer 5.5.



-----Original Message-----
From: Charles Knell [mailto:cknell@onebox.com]
Sent: Tuesday, August 13, 2002 3:48 PM
To: xsl-list@lists.mulberrytech.com
Subject: Re: [xsl] transforming XML into XML using XSLT.


It would be far easier to give you an example XSLT if you gave us
examples
of "before" and "after" versions of your XML.

-- 
Charles Knell
cknell@onebox.com - email


---- "Shaikh, Neelkamal (MED, Oracle)" <Neelkamal.Shaikh@med.ge.com>
wrote:
> Hi,
> 
> Is it possible to convert XML[having useful +unnecessary data ]
> -----to-----> XML [having Useful data] using XSLT.Could you please
> help
> me out with an example.
> 
> Thanks in advance,
> Neel.
> 
>  XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
> 
>  

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]