Re: [xsl] Problem with parameter processing

Subject: Re: [xsl] Problem with parameter processing
From: Mike Brown <mike@xxxxxxxx>
Date: Fri, 17 Jan 2003 19:52:54 -0700 (MST)
Avula, Raj wrote:
> Create a String out of the array with a delimiter like "1:3:4:8:"
> Pass this string as parameter to XSL file.
> With in the xsl you can do something like.
> 
> <xsl:for-each select="trnsaction">
> 	<xsl:if test="contains(ARRAY_STRING, @id)">
> 		do processing
> 	</xsl:if>
> </xsl:for-each>

If the id is 9 and the string contains something like "509" he'll get a match.
He needs to completely delimit the numbers, putting his delimiter character at
the beginning and end, then look for the number plus both its delimiters, so 
he can be sure he is matching on the whole number, not just a partial one.

Mike

-- 
  Mike J. Brown   |  http://skew.org/~mike/resume/
  Denver, CO, USA |  http://skew.org/xml/


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


Current Thread