以下是使用translate()或replace()的示例
XSLT 1.0 / 2.0
<xsl:value-of select="translate(/subTotal/@formattedValue,'$.','')"/>
仅限XSLT 2.0
<xsl:value-of select="replace(/subTotal/@formattedValue,'[^\d]','')"/>
其中任何一个适用于:
<subTotal formattedValue="$50.50"/>
生产:
5050