Im writing an xslt to find all elements with specific Date formats. But the "match" statement seems to be a problem. I need to format this date to a custom format using C# code. Any help would be great..
my XSLT is:
<xsl:template match="text()[.='[M01]/[D01]/[Y0001]']">
<xsl:value-of select="userCSharp:GetFormatedDate(.)" />
</xsl:template>
My Xml is:
<Root>
<Name>Don</Name>
<EffectiveDate>01/30/2015</EffectiveDate>
</Root>