XSLT 1.0では、次のワンライナーを使用できます。
<a class="project{substring(' new', 5 - 4*(new = 'Yes'))}"/>
これが完全な変換です:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output omit-xml-declaration="yes" indent="yes"/>
<xsl:template match="/*">
<a class="project{substring(' new', 5 - 4*(new = 'Yes'))}"/>
</xsl:template>
</xsl:stylesheet>
この変換が次のXMLドキュメントに適用される場合:
<t>
<new>Yes</new>
</t>
必要な正しい結果が生成されます。
<a class="project new"/>
説明:
AVT(属性値テンプレート)の使用
条件に基づいて文字列を選択するには、XPath 1.0で部分文字列関数を使用し、開始インデックス引数として式を指定できます。この式は、条件が1の場合は1にtrue()
、文字列の長さよりも大きい数値に評価されます。 -その他。
*
XPath 1.0では、 (乗算)演算子の引数が数値に変換されるという事実を使用しますnumber(true()) = 1
。number(false()) = 0
II。XSLT 2.0ソリューション:
このワンライナーを使用してください:
<a class="project{(' new', '')[current()/new = 'Yes']}"/>
これが完全な変換です:
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output omit-xml-declaration="yes" indent="yes"/>
<xsl:template match="/*">
<a class="project{(' new', '')[current()/new = 'Yes']}"/>
</xsl:template>
</xsl:stylesheet>
同じXMLドキュメント(上記)に適用すると、同じように、正しい結果が生成されます。
<a class="project new"/>
説明:
AVTの適切な使用。
シーケンスの適切な使用。
XSLTcurrent()
関数の適切な使用。