F
f
Suppose I have a xml
<class>
<Name>Good</Name>
<Name>bad</Name>
</class>
I hava the xsl
<xsl:template match="Class">
<xsl:for-each select=".\Name">
<xsl:value-of select=".\">
</xsl:for-each>
</xsl:template>
it will print out
Good
bad.
But what I want is:
good
Bad
How can I change the case of the first letter?
Thanks,
qq
<class>
<Name>Good</Name>
<Name>bad</Name>
</class>
I hava the xsl
<xsl:template match="Class">
<xsl:for-each select=".\Name">
<xsl:value-of select=".\">
</xsl:for-each>
</xsl:template>
it will print out
Good
bad.
But what I want is:
good
Bad
How can I change the case of the first letter?
Thanks,