Remark : format-number 0 값 문제
1 2 3 4 5 6 7 |
<xsl:variable name="PureTax">0</xsl:variable> <xsl:value-of select="format-number($PureTax,'#,###.##')"/> 원 out : 원 |
수정 : default 0 을 줌
1 2 3 4 5 6 7 8 9 10 11 12 |
<xsl:variable name="PureTax">0</xsl:variable> <xsl:value-of select="format-number($PureTax,'#,##0.##')"/> 원 out : 0 원 <xsl:value-of select="format-number($PureTax,'#,##0.00')"/> 원 out : 0.00 원 <xsl:value-of select="format-number($PureTax,'#,000.00')"/> 원 out : 000.00 원 |