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

Re: Retrieving values

Subject: Re: Retrieving values
From: David Carlisle <davidc@xxxxxxxxx>
Date: Thu, 8 Jan 2009 15:00:57 GMT
Re:  Retrieving values
> Question: How to get a Sequence of values  so ('TitleA',......)?

just as you had it (although your posted input only had one book, so the
sequence is of length 1)

select="current-group()/title" is the sequence of title elements so you
could for example do

<xsl:value-of select="current-group()/title" separator=", "/>

to put out a comma separated list of them.


> but this doesn't work:
>  <xsl:message select="current-group()/@title"/>

that selects tile attributes of the book elements but you don't have
title attributes, you have title elements.

> Is this possible to check a attribute does exist in a sequence?

yes, just use = 9for value equality) or is (for node identity)

 <xsl:variable name="selectedBooks" select="/books/book[@title = $titles]"/>

selects all books wose title is in the current list, or at least it
would if the markup was 	<book title="TitleA">
as you posted it with title elements you want to check an element not an
attribute, so

 <xsl:variable name="selectedBooks" select="/books/book[title =
 $titles]"/>

David

________________________________________________________________________
The Numerical Algorithms Group Ltd is a company registered in England
and Wales with company number 1249803. The registered office is:
Wilkinson House, Jordan Hill Road, Oxford OX2 8DR, United Kingdom.

This e-mail has been scanned for all viruses by Star. The service is
powered by MessageLabs. 
________________________________________________________________________

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.