我有这样的代码:
<xsl:if test="$k='7' or $k = '8' or $k = '9'">
有没有办法将此表达式放在表单中,例如SQL
k IN (7, 8, 9)
Ty:)
答案 0 :(得分:22)
XSLT / XPath 1.0:
<!-- a space-separated list of valid values -->
<xsl:variable name="list" select="'7 8 9'" />
<xsl:if test="
contains(
concat(' ', $list, ' '),
concat(' ', $k, ' ')
)
">
<xsl:value-of select="concat('Item ', $k, ' is in the list.')" />
</xsl:if>
如果需要,您可以使用其他分隔符。
在XSLT / XPath 2.0中,您可以执行以下操作:
<xsl:variable name="list" select="fn:tokenize('7 8 9', '\s+')" />
<xsl:if test="fn:index-of($list, $k)">
<xsl:value-of select="concat('Item ', $k, ' is in the list.')" />
</xsl:if>
如果您可以使用文档结构来定义列表,则可以执行以下操作:
<!-- a node-set defining the list of currently valid items -->
<xsl:variable name="list" select="/some/items[1]/item" />
<xsl:template match="/">
<xsl:variable name="k" select="'7'" />
<!-- test if item $k is in the list of valid items -->
<xsl:if test="count($list[@id = $k])">
<xsl:value-of select="concat('Item ', $k, ' is in the list.')" />
</xsl:if>
</xsl:template>
答案 1 :(得分:5)
如果您的处理器支持XPath 2.0,那么您可以将$k
与这样的序列进行比较:
<xsl:if test="$k = (7, 8, 9)">
在这种特殊情况下,您甚至可以使用范围运算符:
<xsl:if test="$k = (7 to 9)">
不需要显式的类型转换。使用Saxon-HE 9.8.0.12N(XSLT 3.0)测试。
示例XML:
<?xml version="1.0" encoding="UTF-8"?>
<root>
<node>5</node>
<node>6</node>
<node>7</node>
<node>9</node>
<node>10</node>
<node>79</node>
<node>8</node>
</root>
样式表:
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="3.0">
<xsl:output method="xml" indent="yes"/>
<xsl:template match="root">
<xsl:copy>
<xsl:apply-templates select="node"/>
</xsl:copy>
</xsl:template>
<xsl:template match="node">
<xsl:variable name="k" select="text()"/>
<xsl:if test="$k = (7 to 9)">
<xsl:copy-of select="."/>
</xsl:if>
</xsl:template>
</xsl:stylesheet>
结果:
<?xml version="1.0" encoding="UTF-8"?>
<root>
<node>7</node>
<node>9</node>
<node>8</node>
</root>