Thanks for helping me through all this xpath guys. I am slowly getting it. I now have a doc that is a little different from those that I have been working with. It looks like this:
<?xml version="1.0" encoding="UTF-8"?>
<xmp:document
xmlns:xmp="http://www.example.org"...
I am working on xpath and have some questions. I have the following document:
<?xml version='1.0'?>
<stores>
<store name='Red'>
<computers>
<computer>Dell</computer>
</cpmputers>
</store>
<store name='Green'>
<computers>
</computers>
<features>...
I have an xml document like the one below:
<room name='Green'>
<equipmentList>
</equipmentList>
</room>
<room name='White'>
<equipmentList>
<equipment>Projector</equipment>
<equipment>PC</equipment>
<equipment>Mac</equipment>
</equipmentList>
</room>
<room...
Before anyone asks, this is not homework, I am trying to teach myself xml using SAMS textbook. I am working with an xml file that has several dates listed for each room. I am trying to list the room, followed by all of the dates that it has been booked for. I can sucessfully list each room...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.