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

RE: how do you determine if a property exists?

Subject: RE: how do you determine if a property exists?
From: <Jarno.Elovirta@xxxxxxxxx>
Date: Thu, 15 Apr 2004 11:13:04 +0300
xsl test if attribute exists
Hi,

> > You seem to be testing if the string value of an
> > attribute is an empty string. Either like already
> > have, or if you want to test if the attribute
> > exists, then simply
> > 
> >   <xsl:when test="@Predecessors">
> 
> Yes, what I am wanting to do is to have an attribute
> in the output document called parent_id.  This
> attribute should have the value of the @Predecessors
> attribute in the source document.  If the
> @Predecessors attribute has the value of an empty
> string, then I want parent_id="1".  Similarly, if
> there is no @Predecessors attribute in the source
> document, I want the parent_id attribute to be
> parent_id="1".

Then test

  <xsl:if test="@Predecessors = ''">

or e.g.

  <xsl:if test="string-length(normalize-space(@Predecessors)) = 0">

I suggest reading the XPath spec at <http://www.w3.org/TR/xpath.html#booleans>.

Cheers,

Jarno

Current Thread

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-2013 All Rights Reserved.