RE: Testing the Content of the Next Node

Subject: RE: Testing the Content of the Next Node
From: Stewart Unwin <sunwin@xxxxxxxxxx>
Date: Fri, 10 Mar 2000 10:43:38 +1100
Thanks David - works like a charm!

Stewart

-----Original Message-----
From: David Carlisle [mailto:davidc@xxxxxxxxx]
Sent: Friday, March 10, 2000 9:35 AM
To: xsl-list@xxxxxxxxxxxxxxxx
Subject: Re: Testing the Content of the Next Node


> i.e., if the first character in the following element "body" is "/"

here you wisely quoted the /

>   <xsl:if test="starts-with(following-sibling::body,/)">

here you made your system work hard:-)

starts-with takes xpath expressions as argumenst and evaluates
them as strings, the first argument will be the character content
of the next body element, but the second argument is the string value
of / which is all the characters in your input document.

Try ,'/')  rather than ,/)

David
 


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


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


Current Thread