OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

 


 

   RE: [xml-dev] XPath question (in .NET)

[ Lists Home | Date Index | Thread Index ]


>...
>      <?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 






 

News | XML in Industry | Calendar | XML Registry
Marketplace | Resources | MyXML.org | Sponsors | Privacy Statement

Copyright 2001 XML.org. This site is hosted by OASIS