Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

search in xml file for a tag value

Status
Not open for further replies.

niri24

Programmer
Dec 3, 2001
1
IL
hey,
I'm looking for a program which can search in an xml file according to a specific tag.
thank you.
 
Hi,

I f I understand what you are trying to do is to locate a specific tag within an XML document if wit exists.

You could use xsl to do this

Code:
<xsl:value-of select=&quot;//elementName&quot;></xsl:value-of>

this can be done for either a domdocument object using the selectSingleNode method (e.g .from VB JAVA or ASP) or from within a stylesheet

I hope this helps

regards

Vince Dooher

B-)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top