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]

Re: testing for variable amounts of whitespace?




> second - the questions: can i write an xpath expression to test for a
> variable amount of whitespace? how would i do such a thing?

If you've already used normalize-space() then you just need to test for
empty string, ie 
<xsl:if test="normalize-space(.)='')>&#160;</xsl:if>
If you want to check it wasn't originally empty
<xsl:if test="not(.='') and normalize-space(.)='')>&#160;</xsl:if>

> third - the relevent info: parser: MSXML 3 working in conjunction with
By default MS's DOM builder discards white space nodes, so your
stylesheet never gets to see them.

David

_____________________________________________________________________
This message has been checked for all known viruses by Star Internet delivered
through the MessageLabs Virus Control Centre. For further information visit
http://www.star.net.uk/stats.asp

 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]