|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] RE: XSLT/XPath help to resolve definition references i
hi Thomas,
> I need some help on pure XSLT/XPath syntax/capabilities.
> Let's say that I have an XML document looking like that:
>
> <root>
> <A name="a1"><B .../></A>
> <A name="a2"><B .../></A>
> <A name="a3"><B .../></A>
> <C aRef="ns1:a1"/>
> <C aRef="ns2:a2"/>
> </root>
>
> I want to be able to select all the B element which are under
> the A elements
> referenced by the C element (the A elements for which a
> C/@aRef attribute
> value, minus the prefix, is equal to the A/@name attribute).
>
Use a key on the C's:
<xsl:key name="CRefs" match="C" use="@aRef"/>
Then this as your path in <root> context.
select="A[@name = key('CRefs',substring-after(@aRef,':'))]/B"
Don't know if it works...
Tom
---
"At the first performance I led the attack in person 33 times.
We had three acclamations, four hilarities, two thrilling movements,
four renewals of applause and two indefinite explosions."
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








