Re: [xsl] [contains] wierd error with contains function

Subject: Re: [xsl] [contains] wierd error with contains function
From: David Carlisle <davidc@xxxxxxxxx>
Date: Thu, 19 Dec 2002 09:19:13 GMT
  You use
  
  <xsl:variable name="watchFor" select="xsl,list"/>
  
  you should use
  
  <xsl:variable name="watchFor">xsl,list<xsl:variable/>

Actually it's a lot kinder to the system if you use

<xsl:variable name="watchFor" select="'xsl,list'"/>

The former is a result tree fragment corresponding to a node set with a
root node and a text node with value "xsl,list", the latter is the
string "xsl,list"

David

_____________________________________________________________________
This message has been checked for all known viruses by Star Internet
delivered through the MessageLabs Virus Scanning Service. For further
information visit http://www.star.net.uk/stats.asp or alternatively call
Star Internet for details on the Virus Scanning Service.

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


Current Thread