XPATH根据字符串值选择属性值

时间:2016-11-23 14:07:04

标签: xml xpath xslt-2.0

我有一个XSLT 2.0样式表,我在其中使用以下if-condition来确定属性的值:

<xsl:attribute name="newAttr" select="if (@coltype eq 'STRING' or @ColType eq 'INT') then 'True' else 'False'"/>

如果@coltypeSTRING,则会正确选择True,如果@ColtypeSTRING还是INT,则会正确选择False 1}}。

但是,如果@ColtypeINT,则还会选择False。我该怎么写得正确?

0 个答案:

没有答案