web-dev-qa-db-ja.com

XSLT:二重引用符のエスケープ

私は次のようなXSLTコードを持っています:

<xsl:if test="product_name='3" Magnifier'">
             <attribute name="Business Unit">
             Consumer
             </attribute>   
</xsl:if>

"拡大鏡(引用符付き)、引用符のあいまいさのため製品名と比較できませんでした。二重引用符をエスケープしてあいまいさを解決する方法。

ありがとう。

15
Raj
<xsl:if test="product_name='3&quot; Magnifier'">
21
michael.hor257k