select="format-dateTime(current-dateTime(),'[h01]:[m01] [P] on [FNn] the [D1o].')"
File: Data.xml
File: Transform.xslt
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="2.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xsl:output method="text"/>
<xsl:template match="/">
<xsl:text>
 It's currently </xsl:text>
<xsl:value-of select="format-dateTime(current-dateTime(),'[h01]:[m01] [P] on [FNn] the [D1o].')"/>
</xsl:template>
</xsl:stylesheet>
Output:
It's currently 04:42 p.m. on Wednesday the 10th.
Related examples in the same category