Subject: Re: count string-length without white-space and breaking if white-space exists after 126 characters
From: David Carlisle <davidc@xxxxxxxxx>
Date: Thu, 20 Jun 2002 16:30:54 +0100
|
<xsl:if test="string-length((../memotext) > 126)"> <br /></xsl:if>
(../memotext) > 126
will take the string value of that element convert it to a number
(probably getting NaN) and then compare with 126
so this is probably false
string-length((../memotext) > 126)
first converts its argument to a string, "false" and then takes its
length so this is 5
using a number in a test attribute it's true if the number isn't zero.
You have the brackets in the wrong place...
test="string-length(../memotext) > 126">
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
|