<xsl:for-each select="$script/startWith">
<xsl:variable name = "i" >
<xsl:value-of select="$script/startWith[position()]"/>
</xsl:variable>
<xsl:for-each select="JeuxDeMots/Element">
<xsl:variable name = "A" >
<xsl:value-of select="eName"/>
</xsl:variable>
<xsl:if test="starts-with($A,$i)= true()">
<xsl:variable name="stringReplace">
<xsl:value-of select="substring($i,0,3)"/>
</xsl:variable>
<xsl:value-of select="$stringReplace"/>
</xsl:if>
</xsl:for-each>
</xsl:for-each>
问题:变量$i,不能为每个传递一个xsl。请帮助我。
尝试将 i
的声明替换为
<xsl:variable name="i" select="string(.)"/>
对于 for-each 指令的每个计算,上下文项(即"."(是不同的,但表达式$script/startWith[position()]
的值不会更改。 (在这里,您正在创建一系列startWith
元素,并测试每个元素的有效布尔值 position()
。 表达式 position()
返回一个正整数,因此其有效布尔值始终为 true。 所以谓词[position()]
在这里根本没有工作。
此外,您需要将stringReplace
声明替换为
<xsl:variable name="stringReplace" select="substring($i,1,3)"/>
(在 XPath 中,字符串偏移量以 1 开头,而不是以 0 开头。
我猜你想处理$script
的所有startWith
子项,并且对于每个子项,对于每个 startWith/JeuxDeMots/Element,其eName
子项以 startWith 的值开头,发出一次startWith
值的前三个字符。
实际上,如果整件事更简短、更直接,可能会更容易阅读:
<xsl:for-each select="$script/startWith">
<xsl:variable name = "i" select="string()"/>
<xsl:for-each select="JeuxDeMots/Element">
<xsl:if test="starts-with(eName,$i)">
<xsl:value-of select="substring($i,1,3)"/>
</xsl:if>
</xsl:for-each>
</xsl:for-each>
创建变量$A和$stringReplace如果它们在代码中多次使用,您不会向我们展示,但如果没有,...
我认为问题是你首先改变了上下文。那么元素 JeuxDeMots 对于每个元素来说都不"可见"。例如,您可以尝试将其存储在变量中,并在第二个变量中使用此变量(还有另一种方法可以解决此问题(。
<xsl:template match="/">
<xsl:variable name="doc" select="JeuxDeMots"/>
<xsl:choose>
<xsl:when test="$script/startWith">
<xsl:for-each select="$script/startWith">
<xsl:variable name="i">
<xsl:value-of select="."/>
</xsl:variable>
<xsl:for-each select="$doc/Element">
<xsl:variable name="A">
<xsl:value-of select="eName"/>
</xsl:variable>
<xsl:if test="starts-with($A,$i) = true()">
<xsl:variable name="stringReplace">
<xsl:value-of select="substring($i,0,3)"/>
</xsl:variable>
<xsl:value-of select="$stringReplace"/>
</xsl:if>
</xsl:for-each>
</xsl:for-each>
</xsl:when>
</xsl:choose>
</xsl:template>
虽然我不确定你到底在处理什么,但它似乎输出了所需的值 AsAt。
你也可以考虑C.M.Sperberg-McQueen关于XPath中的字符串偏移的帖子。