0
請幫我如何獲得單引號代替雙在XSLT http://xsltransform.net/3NSSEvL如何獲得單引號代替雙在XSLT
預期輸出:
aav'c'dd
<xsl:variable
name="name"
select="'aav"c"dd'"/>
<xsl:value-of select="$name"/>
請幫我如何獲得單引號代替雙在XSLT http://xsltransform.net/3NSSEvL如何獲得單引號代替雙在XSLT
預期輸出:
aav'c'dd
<xsl:variable
name="name"
select="'aav"c"dd'"/>
<xsl:value-of select="$name"/>
試試這樣...
<xsl:variable name='name' select='"aav'c'dd"'/>