在XSLT 1.0中使用前导零填充数字

时间:2014-09-04 09:41:24

标签: xml xslt-1.0 string-formatting msxml6

我们在XML中有一个数字,可以在一个大型XML文件中最多3位数,该文件必须转换为固定长度的文本才能加载到另一个系统中。

我需要在输出中用前导零填充这个长度为15(这是固定长度的文本)

示例:

 - 1 becomes   000000000000001
 - 11 becomes  000000000000011
 - 250 becomes 000000000000250

我试过了:

<xsl:value-of select="substring(concat('000000000000000', msg:BankAccount/msg:Counter), 12, 15)"/>

在开头获取15个零并获取子字符串,但我必须在子字符串中犯了一个错误,因为在结果中我得到了

0000000000000000000000009LLOYDS BANK PLC
00000000000000000000000010LLOYDS BANK PLC

我也试过format-number,但我返回NaN

<xsl:value-of select="format-number(msg:BankAccount/msg:Counter, '000000000000000')"/>

返回&#39; NaN&#39;

所以我做错了什么,最好的方法是什么?

5 个答案:

答案 0 :(得分:11)

  

我需要在输出中用前导零填充这个长度为15(

那将是

substring(
  concat('000000000000000', msg:BankAccount/msg:Counter), 
  string-length(msg:BankAccount/msg:Counter) + 1, 
  15
)

答案 1 :(得分:9)

另一种方法是

substring(string(1000000000000000 + $x), 2)

答案 2 :(得分:8)

也可以使用字符串格式

完成
<xsl:value-of select="format-number(msg:BankAccount/msg:Counter, '000000000000000')" />

一般来说:

<xsl:value-of select="format-number(number_you_would_like_to_padd, 'string_how_much_zeros_you_would like')" />

答案 3 :(得分:1)

另一个选项是xsl:number ...

<xsl:number value="number_to_format" format="000000000000001"/>

完整示例...

XML输入

<doc>
    <test>1</test>
    <test>11</test>
    <test>250</test>
</doc>

XSLT 1.0

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:output method="text"/>
  <xsl:strip-space elements="*"/>

  <xsl:template match="test">
    <xsl:number value="." format="000000000000001"/>
    <xsl:text>&#xA;</xsl:text>
  </xsl:template>

</xsl:stylesheet>

输出

000000000000001
000000000000011
000000000000250

提琴:http://xsltfiddle.liberty-development.net/pPzifpg

答案 4 :(得分:0)

要考虑的另一种选择。...

<xsl:apply-templates select="Groups/Group[@Name='TheSource']/Field[@Name='BankAccount']" />
<xsl:text>999999999999999</xsl:text>
<!-- uncomment below and comment above line to use without test number -->
<!-- <xsl:text>|</xsl:text> -->

<xsl:template match="Groups/Group[@Name='BankAcctFile']/Field[@Name='BankAccount']">
    <xsl:call-template name="padleft">
        <xsl:with-param name="padChar" select="'0'" />
        <xsl:with-param name="padVar" select="substring(current(),1,15)" />
        <xsl:with-param name="length" select="15" />
    </xsl:call-template>
</xsl:template>