简体   繁体   中英

XML to XML using XSLT - transforming multiple nodes

I have the following XML:

<EMPLOYEE_LIST>
    <EMPLOYEES>
        <PERMANENT>
            <EMPID>650000</EMPID>
            <FIRST_NAME>KEITH</FIRST_NAME>
            <MIDDLE_NAME>H</MIDDLE_NAME>
            <LAST_NAME>ROGERS</LAST_NAME>
        </PERMANENT>
        <CONTRACTUAL>
            <EMPID>650001</EMPID>
            <FIRST_NAME>DARRYL</FIRST_NAME>
            <MIDDLE_NAME>Y</MIDDLE_NAME>
            <LAST_NAME>HANNAH</LAST_NAME>
        </CONTRACTUAL>
    </EMPLOYEES>
</EMPLOYEE_LIST>

It gives me the under-mentioned output:

<?xml version="1.0" encoding="UTF-8"?>
<employees>
    <permanent>
        <emp_id>650000</emp_id>
        <f_name>KEITH</f_name>
        <m_name>H</m_name>
        <l_name>ROGERS</l_name>
    </permanent>
    <contractual>
        <emp_id>650001</emp_id>
        <f_name>DARRYL</f_name>
        <m_name>Y</m_name>
        <l_name>HANNAH</l_name>
    </contractual>
</employees>

When transformed using this XSLT:

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
    <xsl:output method="xml" encoding="UTF-8" indent="yes"/>
    <xsl:strip-space elements="*"/>
    <xsl:template match="/EMPLOYEE_LIST">
        <employees>
            <xsl:apply-templates select="EMPLOYEES/node()"/>
        </employees>        
    </xsl:template>    
    <xsl:template match="PERMANENT">
        <permanent>
            <xsl:apply-templates select="*"/>
        </permanent>
    </xsl:template>    
    <xsl:template match="EMPID">
        <emp_id>
            <xsl:value-of select="."/>
        </emp_id>
    </xsl:template>    
    <xsl:template match="FIRST_NAME">
        <f_name>
            <xsl:value-of select="."/>
        </f_name>
    </xsl:template>    
    <xsl:template match="MIDDLE_NAME">
        <m_name>
            <xsl:value-of select="."/>
        </m_name>
    </xsl:template>    
    <xsl:template match="LAST_NAME">
        <l_name>
            <xsl:value-of select="."/>
        </l_name>
    </xsl:template>

    <xsl:template match="CONTRACTUAL">
        <permanent>
            <xsl:apply-templates select="*"/>
        </permanent>
    </xsl:template>    
    <xsl:template match="EMPID">
        <emp_id>
            <xsl:value-of select="."/>
        </emp_id>
    </xsl:template>    
    <xsl:template match="FIRST_NAME">
        <f_name>
            <xsl:value-of select="."/>
        </f_name>
    </xsl:template>    
    <xsl:template match="MIDDLE_NAME">
        <m_name>
            <xsl:value-of select="."/>
        </m_name>
    </xsl:template>    
    <xsl:template match="LAST_NAME">
        <l_name>
            <xsl:value-of select="."/>
        </l_name>
    </xsl:template>
</xsl:stylesheet>

Which is not what I am trying to achieve as I need to convert the above mentioned XML into another XML exhibiting the following output:

<?xml version="1.0" encoding="UTF-8"?>
<employees>
    <employee>
        <emp_id>650000</emp_id>
        <f_name>KEITH</f_name>
        <m_name>H</m_name>
        <l_name>ROGERS</l_name>
        <type>permanent</type>
        <emp_id>650001</emp_id>
        <f_name>DARRYL</f_name>
        <m_name>Y</m_name>
        <l_name>HANNAH</l_name>
        <type>contractual</type>
    </employee>
</employees>

i am new to xslt and any help would be appreciated

thanks

This short transformation :

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
 xmlns:my="my:my" exclude-result-prefixes="my">
 <xsl:output omit-xml-declaration="yes" indent="yes"/>
 <xsl:strip-space elements="*"/>

 <my:Renames>
  <n old="EMPLOYEES" new="employees"/>
  <n old="EMPID" new="emp_id"/>
  <n old="FIRST_NAME" new="f_name"/>
  <n old="MIDDLE_NAME" new="m_name"/>
  <n old="LAST_NAME" new="l_name"/>
  <n old="PERMANENT" new="permanent"/>
  <n old="CONTRACTUAL" new="contractual"/>
 </my:Renames>

 <xsl:variable name="vRenames" select="document('')/*/my:Renames/*"/>

 <xsl:template match="*/*" priority="-1">
     <xsl:element name="{$vRenames[@old = name(current())]/@new}">
       <xsl:apply-templates/>
     </xsl:element>
 </xsl:template>

 <xsl:template match="PERMANENT|CONTRACTUAL">
  <xsl:apply-templates/>
  <type><xsl:value-of select="$vRenames[@old = name(current())]/@new"/></type>
 </xsl:template>
</xsl:stylesheet>

When applied to the provided XML document:

<EMPLOYEE_LIST>
    <EMPLOYEES>
        <PERMANENT>
            <EMPID>650000</EMPID>
            <FIRST_NAME>KEITH</FIRST_NAME>
            <MIDDLE_NAME>H</MIDDLE_NAME>
            <LAST_NAME>ROGERS</LAST_NAME>
        </PERMANENT>
        <CONTRACTUAL>
            <EMPID>650001</EMPID>
            <FIRST_NAME>DARRYL</FIRST_NAME>
            <MIDDLE_NAME>Y</MIDDLE_NAME>
            <LAST_NAME>HANNAH</LAST_NAME>
        </CONTRACTUAL>
    </EMPLOYEES>
</EMPLOYEE_LIST>

produces the wanted, correct result :

<employees>
   <emp_id>650000</emp_id>
   <f_name>KEITH</f_name>
   <m_name>H</m_name>
   <l_name>ROGERS</l_name>
   <type>permanent</type>
   <emp_id>650001</emp_id>
   <f_name>DARRYL</f_name>
   <m_name>Y</m_name>
   <l_name>HANNAH</l_name>
   <type>contractual</type>
</employees>

This will do the trick:

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
  <xsl:output method="xml" encoding="UTF-8" indent="yes"/>
  <xsl:strip-space elements="*"/>
  <xsl:template match="/EMPLOYEE_LIST">
    <employees>
      <xsl:apply-templates select="EMPLOYEES/node()"/>
    </employees>
  </xsl:template>

  <xsl:template match="PERMANENT">
    <xsl:apply-templates select="*"/>
    <type>permanent</type>
  </xsl:template>

  <xsl:template match="CONTRACTUAL">
    <xsl:apply-templates select="*" />
    <type>contractual</type>
  </xsl:template>

  <xsl:template match="EMPID">
    <emp_id>
      <xsl:value-of select="."/>
    </emp_id>
  </xsl:template>
  <xsl:template match="FIRST_NAME">
    <f_name>
      <xsl:value-of select="."/>
    </f_name>
  </xsl:template>
  <xsl:template match="MIDDLE_NAME">
    <m_name>
      <xsl:value-of select="."/>
    </m_name>
  </xsl:template>
  <xsl:template match="LAST_NAME">
    <l_name>
      <xsl:value-of select="."/>
    </l_name>
  </xsl:template>
</xsl:stylesheet>

Note that you only need to define templates to match EMPID, FIRST_NAME, etc. one time each.

When run on your sample input, this produces:

<employees>
  <emp_id>650000</emp_id>
  <f_name>KEITH</f_name>
  <m_name>H</m_name>
  <l_name>ROGERS</l_name>
  <type>permanent</type>
  <emp_id>650001</emp_id>
  <f_name>DARRYL</f_name>
  <m_name>Y</m_name>
  <l_name>HANNAH</l_name>
  <type>contractual</type>
</employees>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM