[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: Supress

Subject: Re: Supress
From: Dimitre Novatchev <dnovatchev@xxxxxxxxx>
Date: Wed, 1 Aug 2001 12:33:44 -0700 (PDT)
 Re: Supress
Kanthi Damodaran wrote:

> A really newbie question but I want to supress a section only if all the 
> elements are empty.
> 
> For example if the xml looks like below :-
> <Contents>
> <FirstSection>
>   <Content1>Data<Content1>
>   <Content2>Data<Content2>
>   <Content3>Data<Content3>
> </FirstSection>
> 
> <SecondSection>
>   <Content1>  <Content1>
>   <Content2>  <Content2>
>   <Content3>  <Content3>
> </SecondSection>
> </Contents>
> Since all the elements in <SecondSection> is empty I want to supress this 
> from the display page but if the <Contenti> elements are not empty then it 
> needs to be displayed.  Any elegant way of doing this in XSL?

First note that your example is not a well-formed xml document.

The one-line solution is:

<xsl:template match="/*/*[not(*[not('' = normalize-space())])]"/>

The above empty rule will match all children of the top element )in your case
"FirstSection", "SecondSection", ...)  that do not have any element child whose
string value is not whitespace-only. And because the rule is empty, all matching
nodes will simply be ignored. 

Hope this helped.

Cheers,
Dimtre Novatchev.



__________________________________________________
Do You Yahoo!?
Make international calls for as low as $.04/minute with Yahoo! Messenger
http://phonecard.yahoo.com/

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


Current Thread
  • Re: Supress
    • Dimitre Novatchev - Wed, 1 Aug 2001 15:37:46 -0400 (EDT) <=

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2011 All Rights Reserved.