Get value of element : value of « XSLT stylesheet « XML






Get value of element



File: Data.xml

<?xml version="1.0" encoding="utf-8"?>
<Persons>
  <Person>
    <FirstName>A</FirstName>
    <LastName>B</LastName>
  </Person>
  <Person>
    <FirstName>C</FirstName>
    <LastName>D</LastName>
  </Person>
  <Person>
    <FirstName>E</FirstName>
    <LastName>F</LastName>
  </Person>
</Persons>


File: Transform.xslt

<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  version="1.0">

  <xsl:template match="/">
    <Persons>
      <xsl:apply-templates select="/Persons/Person" />
    </Persons>
  </xsl:template>

  <xsl:template match="Person">
    <xsl:copy>
      <xsl:attribute name="FirstName">
                  <xsl:value-of select="FirstName" />
              </xsl:attribute>
      <xsl:attribute name="LastName">
                  <xsl:value-of select="LastName" />
              </xsl:attribute>
    </xsl:copy>
  </xsl:template>

</xsl:stylesheet>


Output:

<?xml version="1.0" encoding="UTF-8"?><Persons><Person FirstName="A" LastName="B"/><Person FirstName="C" LastName="D"/><Person FirstName="E" LastName="F"/></Persons>

 








Related examples in the same category

1.Get value out of two tags
2.Get value of element with @
3.Use value-of to get the size of text
4.Get value from element and attribute
5.select="child::name/following-sibling::*"
6.value-of select="$sortedCities" separator=" "