xsl-list
[Top] [All Lists]

Re: Mask * for translate function

2005-11-10 00:58:33

Thanks David,

translate() doesn't have any special characters, all characters in the
first string (including *) represent themselves and are translated to
characters in the second string.

That's what I gathered from the docs. But when I execute the test template
below (against any given document) both strings are translated to
'Teststring1' with no following underscore.

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"; version="1.0">
    <xsl:variable name="verboteneZeichenInDateiNamen"> 
.:*"'+,|$&amp;&apos;&gt;&lt;&quot;%?!öüäÖÜÄßñ/\</xsl:variable>
    <xsl:template match="/">
        <xsl:message>
            <xsl:value-of 
select="translate('Teststring1',$verboteneZeichenInDateiNamen,'_')" />
        </xsl:message>
        <xsl:message>
            <xsl:value-of 
select="translate('Teststring1*',$verboteneZeichenInDateiNamen,'_')" />
        </xsl:message>
    </xsl:template>
</xsl:stylesheet>


And that happens no matter if I use Xalan or Saxon.

Any ideas what the problem might be?

Thanks.
--
Ferdinand Soethe


--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--



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