[xsl] Testing for presence of alphabetical characters

Subject: [xsl] Testing for presence of alphabetical characters
From: Ian MacDaniel <ian_macdaniel@xxxxxxxxx>
Date: Mon, 6 Feb 2006 09:58:24 -0800 (PST)
Using Saxon 851... can someone tell me why the
following expression returns false?

<?xml version="1.0"?>
<xsl:stylesheet version="2.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>
<xsl:template match="/">
<xsl:for-each select="//entry">
<xsl:variable name="cont" select="."/>
<xsl:variable name="alpha"
select="'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'"/>
<xsl:if test="contains($alpha, $cont)">
<!-- do something -->
</xsl:if>
</xsl:for-each>
</xsl:template>

<?xml version="1.0"?>
<document>
<entry>1a</entry>
</document>


__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

Current Thread