Mega Code Archive

 
Categories / XML / XSLT StyleSheet
 

Define and use entites

File: Data.xml <employee hireDate="09/01/1998">   <last>A</last>   <first>B</first>   <salary>950</salary> </employee> File: Transform.xslt <!DOCTYPE stylesheet [ <!ENTITY space "<xsl:text> </xsl:text>"> <!ENTITY cr "<xsl:text> </xsl:text>"> ]> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"   version="1.0">   <xsl:output method="xml" omit-xml-declaration="yes" />   <xsl:template match="employee">     <xsl:apply-templates select="@hireDate" />     &cr;     <xsl:apply-templates select="first" />     &space;     <xsl:apply-templates select="last" />   </xsl:template> </xsl:stylesheet> Output: 09/01/1998 B A