XML Editor
Sign up for a WebBoard account Sign Up Keyword Search Search More Options... Options
Chat Rooms Chat Help Help News News Log in to WebBoard Log in Not Logged in
Conferences Close Tree View
+ Stylus Studio Feature Requests (1192)
+ Stylus Studio Technical Forum (14621)
+ Website Feedback (249)
+ XSLT Help and Discussion (7625)
- XQuery Help and Discussion (2017)
-> + How to resolve XPTY0004 error (3)
-> + Search a sequence of siblings ... (3)
-> + DataDirect process getting XPS... (2)
-> - Find the parent who doesn't ha... (3)
-> ->Find the parent who doesn...
-> ->Find the parent who doesn...
-> + Help with a basic FLWOR query (3)
-> + xQuery Efficient Performance B... (5)
-> + How to break down a sequence a... (3)
-> + Xquery returning odd number fo... (2)
-> + Problems with Java date parame... (3)
-> + Xquery filter on multiple valu... (2)
-> + Xquery filter by using contain... (5)
-> + multiple xslt execution using ... (2)
-> + How to access to global variab... (6)
-> + "Value can not be converted to... (4)
-> + (simple) problem with xquery (3)
-> + Version of xQuery Included wit... (3)
-> + xQuery 1.0 Produces XPTY0004 E... (3)
-> + Replace Node with Set of Nodes (2)
-> + Unable to Use File Name as Ext... (5)
-> + EDI to XSD and validation (2)
-- Previous [121-140] [141-160] [161-180] Next
+ Stylus Studio FAQs (159)
+ Stylus Studio Code Samples & Utilities (364)
+ Stylus Studio Announcements (113)
Topic  
Postnext
Kam ChanSubject: Find the parent who doesn't have a particular child
Author: Kam Chan
Date: 06 Jul 2009 05:28 PM
I have a simple question, hope that you can answer quickly.

I am trying to write a simple function that takes an argument of the name of a child, and look for the parent node that doesn't have this child.

For example"
declare variable $system :=
<root>
<a>
<b>b2</b>
<c>c1</c>
</a>
<a>
<b>b2</b>
<d/>
</a>
</root>;

declare function local:getParentOfNonExistentChild($system as element(), $bValue as xs:string, $childName as xs:string) as element()*
{
$system//*[b/text() = $bValue][not($childName)]
};

<result>
{ local:getParentOfNonExistentChild($system treat as element(), "b2", "d") }
</result>

In this example the function accepts the name of the child. When I pass in "d" as the child name, it should have returned the first <a> parent, but the function always return empty.

This appears to be a variable substitution problem with the $childName.
How should I write this?

Thanks in advance.

Kam

Postnext
Ivan PedruzziSubject: Find the parent who doesn't have a particular child
Author: Ivan Pedruzzi
Date: 07 Jul 2009 02:09 AM

declare function local:getParentOfNonExistentChild(
$system as element(),
$bValue as xs:string,
$childName as xs:string) as element()*
{
$system//*[b/text() = $bValue and not(.//*[local-name() = $childName ])]
};


Ivan Pedruzzi
Stylus Studio Team

Posttop
Kam ChanSubject: Find the parent who doesn't have a particular child
Author: Kam Chan
Date: 07 Jul 2009 10:18 AM
Ivan,

Thank you, that is working.

Kam

   
Download A Free Trial of Stylus Studio 6 XML Professional Edition Today! Powered by Stylus Studio, the world's leading XML IDE for XML, XSLT, XQuery, XML Schema, DTD, XPath, WSDL, XHTML, SQL/XML, and XML Mapping!  
go

Log In Options

Site Map | Privacy Policy | Terms of Use | Trademarks
Stylus Scoop XML Newsletter:
W3C Member
Stylus Studio® and DataDirect XQuery ™are from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2016 All Rights Reserved.