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

Re: matching elements of a list

Subject: Re: matching elements of a list
From: Rolf Schumacher <mailinglist@xxxxxxxxx>
Date: Wed, 09 May 2007 00:00:17 +0200
Re:  matching elements of a list
I should learn about key(...) and lists, Michael, in order to understand
how this will work.

However, I've got to check for cycles ...

Michael Kay wrote:
> This is a recursive query, and is therefore beyond the scope of XPath alone:
> it needs recursive functions. But it's easy in XSLT (untested!):
>
> <xsl:key name="k" match="ln" use="@s"/>
>
> <xsl:function name="my:children" as="xs:string*">
>   <xsl:param name="parent" as="xs:string"/>
>   <xsl:sequence select="key('k', $parent)/@d"/>
> </xsl:function>
>
> <xsl:function name="my:descendants" as="xs:string*">
>   <xsl:param name="parent" as="xs:string"/>
>   <xsl:variable name="children" select="my:children($parent)"/>
>   <xsl:sequence select="$children, for $c in $children return
> my:descendants($c)"/>
> </xsl:function>  
>
> A bit harder if you need to add a check for cycles, but still doable.
>
> Michael Kay
> http://www.saxonica.com/
>
>   
>> -----Original Message-----
>> From: Rolf Schumacher [mailto:mailinglist@xxxxxxxxx] 
>> Sent: 08 May 2007 06:01
>> To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
>> Subject:  matching elements of a list
>>
>> do I have reached the limits of xpath?
>>
>> if several linked lists are contained in one document how to 
>> match all nodes belonging to a specific start node?
>>
>> The following example may illustrate my question:
>>
>> Input:
>> <root>
>>     <st ix="a"/>
>>     <st ix="b"/>
>>     <el ix="c"/>
>>     <el ix="d"/>
>>     <el ix="e"/>
>>     <el ix="f"/>
>>     <el ix="g"/>
>>
>>     <ln s="a" d="g"/>
>>     <ln s="g" d="f"/>
>>
>>     <ln s="b" d="e"/>
>>     <ln s="e" d="c"/>
>>     <ln s="c" d="d"/>
>> </root>
>>
>> disired output:
>>
>> a: g f
>> b: e c d
>>
>> How to accomplish that by XSLT (2.0)?
>> Even your answer "I know for sure that there is not elegant way"
>> or "You got to extend the processor by some Java function"
>> would help.

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.