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]
Other format: [Raw text]

Re: count string-length without white-space and breaking if white-space exists after 126 characters


<xsl:if test="string-length((../memotext) &gt; 126)"> <br /></xsl:if>

(../memotext) &gt; 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) &gt; 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) &gt; 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


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