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

RE: XPath question (in .NET)


selectsinglenode attributes
I have tried this previously, but strangely it only seems to work on the
first attribute.
e.g. searching on 'element' will return both nodes. searching on 'attribute'
(part of value of 2nd attribute in the child node) nothing is returned.

also, i dont want the search to be restricted to just the attribute values,
but the elements xml string as a whole.

-----Original Message-----
From: Carlo Innocenti [mailto:minollo@m...]
Sent: Wednesday, 14 December 2005 9:58 AM
To: Paul Popiel
Cc: xml-dev@l...
Subject: RE:  XPath question (in .NET)



>...
>      <?xml version="1.0"?>
>         <Test Name="Im a parent element">
>                 <Child Name="Im a child element" Attribute="another
>attribute"/>
>         </Test>
>
>...
>      XmlNodeList foundNodes = xmlDoc.SelectNodes("//*[contains(.,
>'element')]");

Your query is matching elements containing "element" in their values; 
but your strings are associated to attributes, not to text nodes. 
Changing the query to:

"//@*[contains(.,'element')]"

...will return two attributes. If you need the elements containing at 
least one attribute which contains that string, then you need:

"//*[contains(@*,'element')]"

...you get the idea.

Minollo
http://www.stylusstudio.com 



**********************************************************************
This email is confidential.  If you are not the intended recipient, 
you must not copy, distribute, disclose or otherwise use the 
information contained in it.   If you have received this email in 
error, please tell us immediately by return email or by contacting 
us on (+61 8) 9209 6900 and delete the document.  Email may 
be susceptible to data corruption, interception and unauthorised 
amendment.  Advanced Engine Components Ltd is not 
responsible for any changes made to a document other than 
those made by Advanced Engine Components Ltd, or for the 
effect of the changes on the document's meaning.

You must scan this email and any attachments for viruses. 
Advanced Engine Components Ltd accepts no liability for any 
loss, damage or consequence, whether caused by our own 
negligence or not, resulting directly or indirectly from your 
receipt of this email or the use of any attachments.
**********************************************************************

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
 

Stylus Studio has published XML-DEV in RSS and ATOM formats, enabling users to easily subcribe to the list from their preferred news reader application.


Stylus Studio Sponsored Links are added links designed to provide related and additional information to the visitors of this website. they were not included by the author in the initial post. To view the content without the Sponsor Links please click here.

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.