銀行口座番号の例があります。
06101010100075911391740027
次のように表示したい:
06 1010 1010 0075 9113 9174 0027
次のコードを試しました:
<xsl:decimal-format name="european" decimal-separator="." grouping-separator=" "/>
<xsl:value-of select="format-number(06101010100075911391740027,'## #### #### #### #### #### 0000','european')"/>
しかし、結果は予想とはほど遠いものでした:
6 1010 1010 0075 9110 0000 0000
これを修正するにはどうすればよいですか?