Hello, I am using XMLReader to look thru and XML file that I have. While I have been able to play around with it and get it to pull some of the information I want, I am wondering what commands to use to do what I really want.
For example, I really just want one line of information in the XML File. it uses <key> tags for the name of a string that follows it, heres an example,
<key>Serial Number</key>
<string>1234567890</string>
this format is used for other parameters also, but I just need the actual string of serial numbers. Is there a way to tell the reader to search for "Serial Number" and then read back the next line, which corresponds to what I want.
Just so you know I have been using the reader.name command to find string tags which is great, but there are 4 in the file im looking at, I just need the one that says "Serial Number" as its content.
Thanks for any help you can give me,
fwj