This conversion is :
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output omit-xml-declaration="yes" indent="yes"/>
<xsl:param name="pUSDate" select="'12-29-2010 '"/>
<xsl:template match="/">
<xsl:value-of select=
"concat(substring($pUSDate,7,4),
'年',
substring($pUSDate,1,2),
'月',
substring($pUSDate,4,2),
'日'
)
"/>
</xsl:template>
</xsl:stylesheet>
, XML- ( ), , :
2010年12月29日