I have an xml file that I need to read using a script.
Here is a snippet of what the file is in notepad:
<property name="slotInfo0902" caption="PCI Slot 2" value="Available"/>
</structure> </category> <category name="architecture"
caption="Architecture">
I need to search for "PCI Slot 2" or whatever slot number it may be,
and return Slot number and the value cleanly like "Slot 2 = Available".
The problem that I am encountering is that the search string is
returned in a different character position everytime I run the script,
so I can't do a
ObjSFile.Write trim(mid(strPCI, 39, 49) & " = " mid(strPCI,58,67))
Any thoughts?