格式負值我試圖讓顯示正確的負值格式:在XSLT
現在它顯示(19%),當我想它顯示爲-19%。
我有與
<PerChg>-0.190</PerChg>
一個XML文件中的XSL格式化它不工作:
<xsl:value-of select="format-number(PerChg, '#0%')"/>
<xsl:value-of select="format-number(PerChg, '#0%;-#0%')"/>
偶試過:
<xsl:decimal-format name="decimalChangePercent" minus-sign="-" />
<xsl:value-of select="format-number(PerChg, '#0%;-#0%', 'decimalChangePercent')"/>
任何想法?在.NET世界中,使用XslCompiledTransform/XSLT 1.0。
謝謝!