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

Re: Is a variable referencing a node

Subject: Re: Is a variable referencing a node
From: "Andrew Welch" <andrew.j.welch@xxxxxxxxx>
Date: Mon, 29 Sep 2008 16:48:38 +0100
Re:  Is a variable referencing a node
2008/9/29 David Carlisle <davidc@xxxxxxxxx>:
>
>  Basically, I want a template that will output the text of a node for an
>  arbitrary XPath if that node exists.  If the node doesn't exist, I want
>  it to produce "--".
>
>
> in xslt 2
>
> <xsl:value-of select="(/path/to/single/node,'--')[1]"/>
>
> in xslt 1
>
> <xsl:variable name="n" select="/path/to/single/node"/>
> <xsl:value-of select="$n"/>
> <xsl:if test="not($n)">--</xsl:if>

you could do:

<xsl:variable name="dash">--</xsl:variable>
<xsl:value-of select="(/path/to/single/node|$dashes)[1]"/>

...as long as RTFs come after input nodes document order?   (I think they do...)



-- 
Andrew Welch
http://andrewjwelch.com
Kernow: http://kernowforsaxon.sf.net/

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