xsl-list
[Top] [All Lists]

Re: Problem with case-sensitivity

2003-10-01 02:17:03
thanks a lot dave, that solves the problem cheers
----- Original Message ----- 
From: "David Carlisle" <davidc(_at_)nag(_dot_)co(_dot_)uk>
To: <xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com>
Sent: Friday, October 01, 2004 11:12 AM
Subject: Re: [xsl] Problem with case-sensitivity



<xsl:param name="upperCase" select="ABCDEFGHIJKLMNOPQRSTUVWXYZ"/>

That selects the child element <ABCDEFGHIJKLMNOPQRSTUVWXYZ> of the
current node, if there are no such elements it selects nothing.

You want

<xsl:param name="upperCase" select="'ABCDEFGHIJKLMNOPQRSTUVWXYZ'"/>
                                    ^                          ^
                                    ^                          ^
                                    ^                          ^
                                    ^                          ^
                                    ^                          ^
                                    ^                          ^


David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

--+------------------------------------------------------------------
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>