xsl-list
[Top] [All Lists]

Replacing double quotes with XSLT

2003-09-22 13:35:25
I'm trying to replace " within a string in XSLT and replace it with ""
but I'm not having any luck.

Does NOT work

<xsl:element name = "OrganizationCode">
        <xsl:text>"</xsl:text>
        <xsl:value-of select =
"translate(../@OrganizationCode,'\"','\"\"'"/>
        <xsl:text>"</xsl:text>
</xsl:element>

Does NOT work

<xsl:element name = "OrganizationCode">
        <xsl:text>"</xsl:text>
        <xsl:value-of select =
"translate(../@OrganizationCode,'&#x22','&#x22&#x22'"/>
        <xsl:text>"</xsl:text>
</xsl:element>

Does anyone have any suggestions ???

Thanks

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list



<Prev in Thread] Current Thread [Next in Thread>