Dec 3, 2001 #1 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.
hey, I'm looking for a program which can search in an xml file according to a specific tag. thank you.
Dec 5, 2001 #2 Vince Programmer May 10, 2000 71 GB 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="//elementName"></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-) Upvote 0 Downvote
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="//elementName"></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-)