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: regarding strip-space


> I read in the XSLT Reference that xsl:strip-space would actually remove the 
> whitespace-only text nodes from the source.
> My question is ..( sorry its a bit weird)
> 1.what is a whitespace-only node?? ( is it an empty element of kind 
> <myel></myel>)??

No it is white spoace _text_ nodes that are stripped. element nodes are
not text nodes.

in 
<x>
  <a>
    <b> </b>
    <c> 123 </c>
   </a>
</x>

there are 6 white space text nodes, using * to mark white space
characters they are:

<x>***<a>*****<b>*</b>*****<c> 123 </c>****</a>*</x>


> i beleive the only way to do it is through a condition
> <xsl:for-each select = //myel[not(string-length(.) = 0)]">
> is it true??

testing for empty is a FAQ on this list as the archives will show.

You test us equaivlent to

//myel[string(.)]
other tests are
//myel[*]  (has element children)
//myel[normalize-space(.)] (has non white space text)
//myel[node()] has children (including comments and white space text node)

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]