Home. 
.

transparent

transparent

transparent

Altova Mailing List Archives


RE: [xml-dev] xpath expression with fallback if no match is found

From: Sebastian Prehn <sebastian.prehn@----------------.-->
To: Michael Kay <mike@--------.--->
Date: 5/8/2009 7:42:00 AM
Hi Kay,

thank you for the quick help! I came up with:
<xsl:variable name="date" select="abc:def/date" />
<xsl:value-of select="if (boolean($date)) then $date else '0000-00-00'" />
the boolean() is not neccessary.

Im not sure which xpath version my saxon test program supports, since the transformation of your first suggestion failed with "expected ")".

I am heading now over to the mulberrytech list :-), thnks for the hint.

Sebastian





On Fri, 8 May 2009 08:22:13 +0100, "Michael Kay" <mike@s...> wrote:
> 
> In XSLT 2.0, use
> 
> <xsl:value-of select="(abc:def/date, '0000-00-00')[1]"/>
> 
> In 1.0, put the expression in a variable to avoid it being evaluated
> twice.
> 
> Note, XSLT questions are best asked on the xsl-list at mulberrytech.com
> 
> Michael Kay
> http://www.saxonica.com/
> 
>> -----Original Message-----
>> From: Sebastian Prehn [mailto:sebastian.prehn@p...]
>> Sent: 08 May 2009 07:43
>> To: xml-dev@l...
>> Subject: [xml-dev] xpath expression with fallback if no match is found
>>
>> Hi!
>>
>> I have this statement which selects a element in the input xml.
>> <xsl:value-of select="abc:def/optionalelement"/>
>>
>> The element is optional. So I am looking for a conditional
>> statement which selects the element if it exists and returns
>> the a default string otherwise.
>>
>> This snippet should work, but abc:def/optionalelement must be
>> evaluated twice. :-( (the actual xpath expression is more complicated)
>>
>> <xsl:choose>
>> 	<xsl:when test="abc:def/date">
>> 		<xsl:value-of select="abc:def/date"/>
>> 	</xsl:when>
>> 	<xsl:other>0000-00-00</xsl:other>
>> </xsl:choose>
>>
>> Any ideas?
>>
>> Regards,
>> Sebastian
>>
>>
>>
>> --
>> PLANETS-Webdesign - Web Applications
>> Sebastian Prehn
>> Adlerstr. 56, 70199 Stuttgart
>> www.planetswebdesign.de
>> PGP keyID: 0x3507AF63
>>
>>
>> ______________________________________________________________
>> _________
>>
>> XML-DEV is a publicly archived, unmoderated list hosted by
>> OASIS to support XML implementation and development. To
>> minimize spam in the archives, you must subscribe before posting.
>>
>> [Un]Subscribe/change address: http://www.oasis-open.org/mlmanage/
>> Or unsubscribe: xml-dev-unsubscribe@l...
>> subscribe: xml-dev-subscribe@l... List archive:
>> http://lists.xml.org/archives/xml-dev/
>> List Guidelines: http://www.oasis-open.org/maillists/guidelines.php
>>
--
PLANETS-Webdesign - Web Applications
Sebastian Prehn
Adlerstr. 56, 70199 Stuttgart
www.planetswebdesign.de
PGP keyID: 0x3507AF63


_______________________________________________________________________

XML-DEV is a publicly archived, unmoderated list hosted by OASIS
to support XML implementation and development. To minimize
spam in the archives, you must subscribe before posting.

[Un]Subscribe/change address: http://www.oasis-open.org/mlmanage/
Or unsubscribe: xml-dev-unsubscribe@l...
subscribe: xml-dev-subscribe@l...
List archive: http://lists.xml.org/archives/xml-dev/
List Guidelines: http://www.oasis-open.org/maillists/guidelines.php



transparent
Print
Mail
Like It
Disclaimer
.

These Archives are provided for informational purposes only and have been generated directly from the Altova mailing list archive system and are comprised of the lists set forth on www.altova.com/list/index.html. Therefore, Altova does not warrant or guarantee the accuracy, reliability, completeness, usefulness, non-infringement of intellectual property rights, or quality of any content on the Altova Mailing List Archive(s), regardless of who originates that content. You expressly understand and agree that you bear all risks associated with using or relying on that content. Altova will not be liable or responsible in any way for any content posted including, but not limited to, any errors or omissions in content, or for any losses or damage of any kind incurred as a result of the use of or reliance on any content. This disclaimer and limitation on liability is in addition to the disclaimers and limitations contained in the Website Terms of Use and elsewhere on the site.

.
.

transparent

transparent