删除XSLT中的最后一个逗号



using XSLT 1.0 .

<xsl:for-each select="*">
    <xsl:variable name="xxxx" select="@name" />
    <xsl:if test="../../../../fieldMap/field[@name=$xxxx]">...
        <xsl:if test="position() != last()">////this is not work correctly as last() number is actual last value of for loop and position() is based on if condition.
            <xsl:text>,</xsl:text>
        </xsl:if>
    </xsl:if>
</xsl:for-each>

你能告诉我如何删除最后一个' , '在这里吗?

position()last()应该基于循环,而不是xsl:if。我想你说的是,你实际上是想检查这是否是xsl:if为真的最后一个元素,因为这样的元素可能实际上不是循环中的最后一个元素。

我建议将您的xsl:for-eachxsl:if合并为一个,并仅选择条件为真的那些元素。这样,您就可以按照期望的方式检查位置

<xsl:for-each select="*[@name = ../../../../fieldMap/field/@name]">
    <xsl:if test="position() != last()">
         <xsl:text>,</xsl:text>
    </xsl:if>
</xsl:for-each>

您可以将内部if更改为:

    <xsl:if test="not(following-sibling::*[
                   @name = ../../../../fieldMap/field/@name])">
        <xsl:text>,</xsl:text>
    </xsl:if>

顺便说一句,这是因为"一般比较"。例如

A = B
如果A选择的任何节点等于b选择的任何节点(与b选择的任何节点具有相同的值) 为真

出于DRY的考虑,我可能会将../../../../fieldMap/field/@name放入一个变量中,并在for-each循环开始之前声明它:

<xsl:variable name="fieldNames" select="../../../../fieldMap/field/@name" />
<xsl:for-each select="*">
    <xsl:if test="$fieldNames = @name">...
        <xsl:if test="not(following-sibling::*[@name = $fieldNames])">
            <xsl:text>,</xsl:text>
        </xsl:if>
    </xsl:if>
</xsl:for-each>

同样,$fieldNames可以是多个属性节点的节点集,当我们说$fieldNames = @name时,我们询问@name的值是否等于$fieldNames中任何节点的值。

翻译、替换、拆分连接在XSLT中不起作用。我实现了一种简单的方法,在我的XSLT

中运行良好

示例代码:

  <xsl:variable name="ErrorCPN">
    <xsl:if test="count(/DATA_DS/G_1)>0 and count(/DATA_DS/CPN)>0">
      <xsl:for-each select="$BIPReportCPN/ns3:BIPCPN/ns3:BIPEachCPNDelimitedValue">
        <xsl:variable name="BIPEachCPNDelimitedValue" select="."/>
        <xsl:if test="count(/DATA_DS/G_1[CPN=$BIPEachCPNDelimitedValue]/CPN)=0">
          <xsl:value-of select="concat($BIPEachCPNDelimitedValue,',')"/>
        </xsl:if>
      </xsl:for-each>
    </xsl:if>
  </xsl:variable>
  <xsl:value-of select="substring($ErrorCPN,1,string-length($ErrorCPN)-1)"/>
</xsl:if> 

我创建了一个变量,并在if和每个条件中实现,对于每个循环所需的值都用逗号连接,在循环结束时将有一个额外的逗号,这是我们不需要的。因此,我们可以取子字符串并去掉最后一个逗号。

相关内容

  • 没有找到相关文章

最新更新