Converting XML elements to XML attributes using XSLT

前端 未结 5 1752
梦谈多话
梦谈多话 2020-12-03 00:00

We have a current system that outputs an XML file which is in the following format:


   
      something<         


        
相关标签:
5条回答
  • 2020-12-03 00:19

    This ought to do it:

      <xsl:for-each select="//ITEM">
        <xsl:element name="ITEM">
          <xsl:attribute name="serialNumber">
            <xsl:value-of select="SERIALNUMBER"/>
          </xsl:attribute>
          <xsl:attribute name="location">
            <xsl:value-of select="LOCATION"/>
          </xsl:attribute>
          <xsl:attribute name="barcode">
            <xsl:value-of select="BARCODE"/>
          </xsl:attribute>
        </xsl:element>
      </xsl:for-each>
    

    Or using David's shortcut:

    <xsl:for-each select="//ITEM">
      <ITEM serialNumber="{SERIALNUMBER}" location="{LOCATION}" barcode="{BARCODE}"/>
    </xsl:for-each>
    
    0 讨论(0)
  • 2020-12-03 00:27

    These two templates should do it:-

    <xsl:template match="ITEM">
       <ITEM serialNumber="{SERIALNUMBER}" location="{LOCATION}" barcode="{BARCODE}" />
    </xsl:template>
    
    <xsl:template match="INVENTORY">
       <INVENTORY>
          <xsl:apply-templates />
       </INVENTORY>
    </xsl:template>
    
    0 讨论(0)
  • 2020-12-03 00:29

    If your source looks like this:

    <row><a>1</a><b>2</b></row>
    

    and you want it to look like this:

    <row a="1" b="2" />
    

    then this XSLT should work:

    <xsl:template match="row">
        <row a="{a}" b="{b}" />
    </xsl:template>
    
    0 讨论(0)
  • 2020-12-03 00:32

    Here is probably the simplest solution that will convert any children-elements of ITEM to its attributes and will reproduce everything else as is, while converting the element names to any desired attribute names:

    <xsl:stylesheet version="1.0" 
     xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
     <xsl:output omit-xml-declaration="yes" indent="yes"/>
    <!--                                              --> 
      <xsl:strip-space elements="*"/>
    
      <xsl:variable name="vrtfNameMapping">
        <item name="SERIALNUMBER" newName="serialNumber"/>
        <item name="LOCATION" newName="location"/>
        <item name="BARCODE" newName="barcode"/>
      </xsl:variable>
     <!--                                              --> 
      <xsl:variable name="vNameMapping" select=
      "document('')/*/xsl:variable[@name='vrtfNameMapping']"/>
    <!--                                              --> 
    
      <xsl:template match="node()|@*">
        <xsl:copy>
          <xsl:apply-templates select="node()|@*"/>
        </xsl:copy>
      </xsl:template>
    <!--                                              --> 
      <xsl:template match="ITEM/*">
        <xsl:attribute name=
         "{$vNameMapping/*[@name=name(current())]/@newName}">
          <xsl:value-of select="."/>
        </xsl:attribute>
      </xsl:template>
    </xsl:stylesheet>
    

    when the above transformation is applied on the provided XML document:

    <INVENTORY>
        <ITEM>
            <SERIALNUMBER>something</SERIALNUMBER>
            <LOCATION>something</LOCATION>
            <BARCODE>something</BARCODE>
        </ITEM>
    </INVENTORY>
    

    the wanted result is produced:

    <INVENTORY>
       <ITEM serialNumber="something" location="something" barcode="something"/>
    </INVENTORY>
    

    Do note the following:

    1. The use of the identity rule

    2. The use of <xsl:strip-space elements="*"/>

    3. The use of the variable vrtfNameMapping without any xxx:node-set() extension function.

    4. The fact that we handle any mapping between a name and a newName, not only simple lower-casing.

    0 讨论(0)
  • 2020-12-03 00:34

    That should work:

    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
      <xsl:template match="INVENTORY">
        <INVENTORY>
          <xsl:apply-templates/>
        </INVENTORY>
      </xsl:template>
    
      <xsl:template match="ITEM">
        <ITEM>
          <xsl:for-each select="*">
            <xsl:attribute name="{name()}">
              <xsl:value-of select="text()"/>
            </xsl:attribute>
    
          </xsl:for-each>
        </ITEM>
      </xsl:template>
    </xsl:stylesheet>
    

    HTH

    0 讨论(0)
提交回复
热议问题