我需要打印一个连续打印为94 9的虚拟拖车。 我需要它作为文件的最后一行
答案 0 :(得分:4)
最简单(就处理而言,也是最便宜的)方法:
<xsl:text>9999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999</xsl:text>
另一个选择:
<xsl:value-of select="for $i in 1 to 94 return '9'" separator="" />
还有另一个(需要支持XSLT 3.0的处理器):
<xsl:value-of select="xs:integer(math:pow(10, 94))-1" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:math="http://www.w3.org/2005/xpath-functions/math" />