Mega Code Archive

 
Categories / XML / XSLT StyleSheet
 

Format-date(orgchart@date, [D1] [MNn] [Y1])

File: Data.xml <?xml version="1.0"?> <orgchart date="2004-03-31"> </orgchart> File: Transform.xslt <?xml version="1.0"?> <html xmlns:xsl="http://www.w3.org/1999/XSL/Transform"   xsl:version="2.0">   <head>     <title>Management Structure</title>   </head>   <body>     <p>       <xsl:value-of         select="format-date(/orgchart/@date, '[D1] [MNn] [Y1]')" />     </p>   </body> </html> Output: <html>    <head>       <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">       <title>Management Structure</title>    </head>    <body>       <p>31 March 2004</p>    </body> </html>