Microsoft Knowledge Base Email Alertz

When you use the Microsoft XML (MSXML) Document Object Model (DOM) in code to load and parse an XML document, it is common programming practice to identify elements and/or elements with attributes whose data contains a specified string valu

Search KbAlertz

Advanced Search

Receive Microsoft Knowledge Base articles by E-Mail?

Every night we scan the Microsoft Knowledge Base. If technologies you're interested in are updated, we'll send you an e-mail. You only get one e-mail a day, and only when new articles are added.

Click here to create a
FREE account
Already have an account?
[Click here to Login]











Microsoft Knowledge Base Article

This article contents is Microsoft Copyrighted material.
©2005-©2007 Microsoft Corporation. All rights reserved. Terms of Use | Trademarks

Article ID: 304265 - Last Review: July 13, 2004 - Revision: 1.2

How To Use the contains() XPath Function When You Are Programming the MSXML DOM

This article was previously published under Q304265

On This Page

SUMMARY

When you use the Microsoft XML (MSXML) Document Object Model (DOM) in code to load and parse an XML document, it is common programming practice to identify elements and/or elements with attributes whose data contains a specified string value or word. This article documents a code sample that demonstrates how you can use the contains XML Path Language (XPath) string function to implement this requirement.

MORE INFORMATION

Step-by-Step Example

  1. In Notepad, create a new XML document named Books.xml, and paste the following XML:
    <?xml version="1.0"?>
    <!-- This file represents a fragment of a bookstore inventory database -->
    <bookstore specialty="novel">
      <book>
        <Title>Beginning XML</Title>
        <Publisher>Wrox</Publisher>
      </book>
      <book>
        <Title>Professional XML</Title>
        <Publisher>Wrox</Publisher>
      </book>
      <book>
        <Title>Programming ADO</Title>
        <author>
          <first-name>Mary</first-name>
          <last-name>Bob</last-name>      
        </author>
        <datePublished>1/1/2000</datePublished>
        <Publisher>Microsoft Press</Publisher>
      </book>
    </bookstore> 
    					
  2. Save Books.xml in the root folder of drive C.
  3. Open a new Standard EXE project in Microsoft Visual Basic. Form1 is created by default.
  4. From the Project menu, click References, and then select the Microsoft XML 3.0 check box.
  5. Drag a Command button, and drop it onto Form1.
  6. Copy and paste the following code in the Click event procedure of the Command button:
    Dim doc As MSXML2.DOMDocument
    Dim nlist As MSXML2.IXMLDOMNodeList
    Dim node As MSXML2.IXMLDOMNode
    
    Set doc = New MSXML2.DOMDocument
    doc.setProperty "SelectionLanguage", "XPath"
    doc.Load "c:\books.xml"
    Set nlist = doc.selectNodes("//book/Title[contains(.,'ADO')]")
    MsgBox "Matching Nodes : " & nlist.length
    
    For Each node In nlist
      Debug.Print node.nodeName & " : " & node.Text
    Next
    					
  7. The preceding code loads the XML from Books.xml into an instance of the MSXML DOMDocument object. It then runs an XPath query that uses the contains XPath function to identify all Book titles that contain the word ADO. Finally, the For loop iterates through the selected nodes and displays the matching titles that were identified by running the XPath query.
  8. The first parameter of the contains XPath function is used to specify the source node or string against which the comparison is to be executed. The second parameter is a string that specifies the word or string value to look for in the source node. It is important to remember that the string or word that is supplied as the second parameter of the contains function is case sensitive.

APPLIES TO
  • Microsoft XML Parser 3.0
  • Microsoft XML Parser 3.0 Service Pack 1
Keywords: 
kbhowto KB304265
       

Community Feedback System

Very often, it takes hours to solve a problem. Very often, you've looked high and low, and have tried a lot of solutions. When you finally found it, chances are, it was because someone else helped you. Here's your chance to give back. Use our community feedback tool to let others know what worked for you and what didn't.

Please also understand that the community feedback system is not warranted to be correct, it's simply a system that we've built to let people try and help each other. If something in a feedback response doesn't make sense to you, or you're not comfortable making changes that the feedback talks about (like registry edits), please consult a professional.

Thank you for using kbAlertz.com Feedback System.

-- Scott Cate