what are main differences between SelectNodes and GetElementsByTagName.

link|improve this question

44% accept rate
In what programming language or environment is this? – bmargulies Mar 25 '10 at 12:12
XML DOM Methods from msdn.microsoft.com/en-us/library/ms757828%28VS.85%29.aspx. Sometime i got confused. Thanks for both your answers. Currently using classic asp retrive remote xml nodes, later I will try to use .net – Jason Mar 25 '10 at 16:29
feedback

2 Answers

up vote 4 down vote accepted

SelectNodes is a .NET/MSXML-specific method that gets a list of matching nodes for an XPath expression. XPaths can select elements by tag name but can also do lots of other, more complicated selection rules.

getElementByTagName is a DOM Level 1 Core standard method available in many languages (but spelled with a capital G in .NET). It selects elements only by tag name; you can't ask it to select elements with a certain attribute, or elements with tag name a inside other elements with tag name b or anything clever like that. It's older, simpler, and in some environments faster.

link|improve this answer
feedback

SelectNodes takes an XPath expression as a parameter and returns all nodes that match that expression.

GetElementsByTagName takes a tag name as a parameter and returns all tags that have that name.

SelectNodes is therefore more expressive, as you can write any GetElementsByTagName call as a SelectNodes call, but not the other way around. XPath is a very robust way of expressing sets of XML nodes, offering more ways of filtering than just name. XPath, for example, can filter by tag name, attribute names, inner content and various aggregate functions on tag children as well.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.