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

Re: Complex XPath question

Subject: Re: Complex XPath question
From: David Carlisle <davidc@xxxxxxxxx>
Date: Fri, 01 Mar 2013 23:17:50 +0000
Re:  Complex XPath question
On 01/03/2013 23:08, dvint@xxxxxxxxx wrote:
Should have said I'm doing this in XSLT. I can use keys, but I'm trying to
figure out the XPath to make the keys useful.

not sure what you meant by


> Is it possible in one XPath statement?

in that case.


<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">


<xsl:key name="o" match="object[property[@name='title']]" use="normalize-space(property[@name='title'])"/>

<xsl:template match="/">
---
<xsl:copy-of select="
for $m in max(//object[normalize-space(property[@name='title'])='COMPARE']/number(property[@name='version']))
return
//object[normalize-space(property[@name='title'])='COMPARE'][number(property[@name='version'])=$m]/id
"/>
--
<xsl:variable name="m" select="max(key('o','COMPARE')/number(property[@name='version']))"/>
<xsl:copy-of select="key('o','COMPARE')[number(property[@name='version'])=$m]/id"/>
</xsl:template>
</xsl:stylesheet>


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.