Output text with tag : output « XSLT stylesheet « XML






Output text with tag


File: Data.xml

<test>AAA</test>

File: Transform.xslt

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

  <xsl:template match="test">
    <testOut>
      this is a test
      <xsl:apply-templates />
    </testOut>
  </xsl:template>

</xsl:stylesheet>


Output:

<?xml version="1.0" encoding="UTF-8"?><testOut>
      this is a test
      AAA</testOut>

 








Related examples in the same category

1.format output with tab
2.output rtf in format
3.Add , to the output
4.Add your signs to the output (output method="text")
5.Output text with xsl:text
6.output method="xml" omit-xml-declaration="yes" indent="no"
7.Output html option list
8.output method="html"
9.Output HTML tags
10.Select with value-of and output with new tags