This is my xml file:
<?xml version="1.0" encoding="windows-1250"?>
<CONTACTS>
<CONTACT>
<FirstName>Ford</FirstName>
<LastName>Pasteur</LastName>
<EMail>pasteur.ford@yahoo.com</EMail>
</CONTACT>
<CONTACT>
<FirstName>Jack</FirstName>
<LastName>Sully</LastName>
<URL>http://www.facebook.com/profile.php?id=1000474277</URL>
</CONTACT>
<CONTACT>
<FirstName>Colombo</FirstName>
<LastName>Chao</LastName>
<EMail>chao.colombo@liberto.it</EMail>
</CONTACT>
</CONTACTS>
I used below XSLT file for my fist version of xml output.
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:template>
<xsl:template match="CONTACT">
<xsl:copy>
<Customer-ID>
<xsl:value-of select="generate-id(.)"/>
</Customer-ID>
<xsl:copy-of select="FirstName|LastName|URL"/>
<Facebook-ID>
<xsl:choose>
<xsl:when test="URL">
<xsl:value-of select="substring-after(URL,'?id=')"/>
</xsl:when>
<xsl:otherwise>
</xsl:otherwise>
</xsl:choose>
</Facebook-ID>
<EMAILS>
<xsl:apply-templates select="EMail"/>
</EMAILS>
</xsl:copy>
</xsl:template>
<xsl:template match="EMail">
<EMail>
<Type><xsl:value-of select="substring-before(
substring-after(.,'@'),
'.')"/>
</Type>
<Value><xsl:value-of select="."/></Value>
</EMail>
</xsl:template>
</xsl:stylesheet>
My first version of xml output from the above XSLT file:
<?xml version="1.0" encoding="windows-1250"?>
<CONTACTS>
<CONTACT>
<Customer-ID>N65539</Customer-ID>
<FirstName>Ford</FirstName>
<LastName>Pasteur</LastName>
<EMAILS>
<EMail>
<Type>yahoo</Type>
<Value>pasteur.ford@yahoo.com</Value>
</EMail>
</EMAILS>
</CONTACT>
<CONTACT>
<Customer-ID>N65546</Customer-ID>
<FirstName>Jack</FirstName>
<LastName>Sully</LastName>
<URL>http://www.facebook.com/profile.php?id=1000474277</URL>
<Facebook-ID>1000474277</Facebook-ID>
<EMAILS/>
</CONTACT>
<CONTACT>
<Customer-ID>N65553</Customer-ID>
<FirstName>Colombo</FirstName>
<LastName>Chao</LastName>
<EMAILS>
<EMail>
<Type>liberto</Type>
<Value>chao.colombo@liberto.it</Value>
</EMail>
</EMAILS>
</CONTACT>
</CONTACTS>
This is my second XSLT file:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:template>
<xsl:template match="CONTACT">
<xsl:copy>
<Customer-ID>
<xsl:value-of select="Customer-ID"/>
</Customer-ID>
<FirstName>
<xsl:value-of select="FirstName"/>
</FirstName>
<LastName>
<xsl:value-of select="LastName"/>
</LastName>
<gmail>
<xsl:value-of select="EMAILS/EMail[Type='gmail']/Value"/>
</gmail>
<yahoo>
<xsl:value-of select="EMAILS/EMail[Type='yahoo']/Value"/>
</yahoo>
<liberto>
<xsl:value-of select="EMAILS/EMail[Type='liberto']/Value"/>
</liberto>
<URL>
<xsl:value-of select="URL"/>
</URL>
<Facebook-ID>
<xsl:value-of select="Facebook-ID"/>
</Facebook-ID>
</xsl:copy>
</xsl:template>
This is my final xml output from the 2nd XSLT file:
<?xml version="1.0" encoding="windows-1250"?>
<CONTACTS>
<CONTACT>
<Customer-ID>N65539</Customer-ID>
<FirstName>Ford</FirstName>
<LastName>Pasteur</LastName>
<gmail/>
<yahoo>pasteur.ford@yahoo.com</yahoo>
<liberto/>
<URL/>
<Facebook-ID/>
</CONTACT>
<CONTACT>
<Customer-ID>N65546</Customer-ID>
<FirstName>Jack</FirstName>
<LastName>Sully</LastName>
<gmail/>
<yahoo/>
<liberto/>
<URL>http://www.facebook.com/profile.php?id=1000474277</URL>
<Facebook-ID>1000474277</Facebook-ID>
</CONTACT>
<CONTACT>
<Customer-ID>N65553</Customer-ID>
<FirstName>Colombo</FirstName>
<LastName>Chao</LastName>
<gmail/>
<yahoo/>
<liberto>chao.colombo@liberto.it</liberto>
<URL/>
<Facebook-ID/>
</CONTACT>
</CONTACTS>
How do I merge these two XSLT files as a single XSLT file to get my final XML output.
how do i proceed with this? because there are two different xml files of similar type.
I’m using Eclipse Hellios run as –>XSL transformation to see the output.
You can use
xsl:importto reuse your XSLT files and then use the technique explained in the @Dimitre’s answer as follows:Where:
transforms are slightly modified adding a
modeto each template. For instance, phase1.xsl transform:For phase2.xsl you will use `mode=”phase2″ obviously.
When the above conditions are satisfied, and the merging transform is applied to your first input XML, the following output is obtained: