output method="text" indent="no" : output « XSLT stylesheet « XML Tutorial






File: Data.xml

<?xml version="1.0"?>
<addressbook>

  <address>
    <name>
      <title>Ms.</title>
      <first-name>Joe</first-name>
      <last-name>Smith</last-name>
    </name>
    <street>707 First Way</street>
    <city>New York</city>
    <state>ME</state>
    <zip>00218</zip>
  </address>
</addressbook>

File: Transform.xslt
<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

  <xsl:output method="text" indent="no"/>
  <xsl:strip-space elements="*"/>

  <xsl:variable name="newline">
  <xsl:text></xsl:text>
  </xsl:variable>

  <xsl:template match="/">
    <xsl:for-each select="addressbook/address">
      <xsl:sort select="name/last-name"/>
      <xsl:sort select="name/first-name"/>
      <xsl:if test="name/title">
        <xsl:value-of select="name/title"/>
        <xsl:text> </xsl:text>
      </xsl:if>
      <xsl:value-of select="name/first-name"/>
      <xsl:text> </xsl:text>
      <xsl:value-of select="name/last-name"/>
      <xsl:value-of select="$newline"/>
      <xsl:value-of select="street"/>
      <xsl:value-of select="$newline"/>
      <xsl:value-of select="city"/>
      <xsl:text>, </xsl:text>
      <xsl:value-of select="state"/>
      <xsl:text>  </xsl:text>
      <xsl:value-of select="zip"/>
      <xsl:value-of select="$newline"/>
      <xsl:value-of select="$newline"/>
    </xsl:for-each>
  </xsl:template>
</xsl:stylesheet>

Output:

Ms. Joe Smith707 First WayNew York, ME  00218








5.2.output
5.2.1. Element
5.2.2.output method="xml" indent="yes" encoding="ISO-8859-1"
5.2.3.output indent="yes"
5.2.4.output method="text" indent="no"
5.2.5.output method="text"
5.2.6.Set output encoding, indent, standalone, doctype
5.2.7.html: "disable-output-escaping xsl:output"
5.2.8.xml: "disable-output-escaping xsl:output"
5.2.9.text: "disable-output-escaping xsl:output"
5.2.10.The XSLT stylesheet used to generate a CSV file
5.2.11.outputs in UTF-8
5.2.12.in UTF-16
5.2.13.in Cp1250
5.2.14.in ISO-8859-1
5.2.15.text output method outputs the string-value of every text node