This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: case insensitive comparison



>   Currently, have this:

>	   <xsl:when test= ".[@internal = //bookmark/@name]">

as discussed a few days ago on this list, you can't use [] after .
that should be

	   <xsl:when test= "self::node()[@internal = //bookmark/@name]">


> I'd like to make this case insensitive.   Thanks.  ekt

If you are writing in English,

<xsl:variable name="u" select="'ABCDEFGHIJKLMNOPQRSTUVWXYZ'"/>
<xsl:variable name="l" select="'abcdefghijklmnopqrstuvwxyz'"/>

<xsl:when test= "self::node()
             [translate(@internal,$u,$l) = 
              translate(//bookmark/@name,$u,$l)]">

David



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

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]