1

如果我定义的变量不等于特定字符串,我想取值。在这里,如果变量 'name' 、 'address' 和 'city' 分别不等于 'Tom' 、 'Street' 和 'CityStreet' ,我想取它们的值,用“-”分隔。那可能吗?

xsl:attribute name='person'>
        <xsl:value-of separator="-" select=
    "($name, $address,
     $city)" />
        </xsl:attribute> 
4

2 回答 2

1

您可以对变量使用谓词:

<xsl:attribute name='person'>
    <xsl:value-of separator="-" select="($name[.!='Tom'], $address[.!='Street'],$city[.!='CityStreet'])"/>          
</xsl:attribute>

或者如果您不想要一个空属性,则为:

<xsl:if test="$name != 'Tom' and 
    $address != 'Street' and 
    $city != 'CityStreet'">
    <xsl:attribute name="person">
        <xsl:value-of separator="-" select="($name[.!='Tom'], $address[.!='Street'],$city[.!='CityStreet'])"/>
    </xsl:attribute>
</xsl:if>
于 2012-07-03T19:45:59.803 回答
1

使用

<xsl:if test=
  "not($name eq 'Tom' and $address eq 'Street' and $city eq 'CityStreet')">
  <xsl:attribute name="person">
    <xsl:value-of separator="-" select=
      "($name[. ne 'Tom'], $address[. ne 'Street'], $city[. ne 'CityStreet'])"/>
  </xsl:attribute>
</xsl:if>
于 2012-07-04T01:50:20.457 回答