vote up 0 vote down star

I have some XML I'm having trouble processing with XPath. I can't seem to get the values I'm looking for. The XML is structured like this:

<Group>
   <Menu>
      <Name>Top Menu</Name>
      <Document>
         <DocName>Readme.txt</DocName>
      </Document>
      <Menu>
         <Name>Sub Menu</Name>
         <Document>
            <DocName>Manual.pdf</DocName>
         </Document>
         <Document>
            <DocName>UserGuide.pdf</DocName>
         </Document>
      </Menu>
   </Menu>
</Group>

Given the menu name, I want to get back a list of DocumentNodes in the menu. For example, given "Sub Menu", I'd like to get back the two Document nodes for Manual.pdf and UserGuide.pdf.

Currently, I'm pulling this information using code that loops through the children, but, I'd rather just pull it up directly using XPath, but my skills with it are weak.

(And before you ask, I cannot restructure the XML. It's provided to me this way.)

Any thoughts?

flag

80% accept rate
What language are you using? There must be some parser written in/for that language so that you don't have to rely on RegEx – Ionut G. Stan Mar 4 at 19:39
You're right. I mean to say XPath. Brain fart! – Paul Lefebvre Mar 4 at 19:50

2 Answers

vote up 9 vote down check

Here is an XPath that will do what you want:

//Menu[Name='Sub Menu']/Document

link|flag
vote up 0 vote down

/<Menu>[\w\n]*<Name>Sub Menu</Name>[\w\n]*<Document>[\w\n]*(<DocName>([a-ZA-Z0-9\.]+)</DocName>[\w\n]*)*</Menu>/

Would more than likely work (with a little tweaking, this is a bit rough!), but, I don't think Regex is the way to go. I'd personally use XPath or DOM

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.