Given the following xml document
<root> <childnode0/> <childnode2/> <childnode3/> <childnode4/> </root>
I know xpath to select all comments at a specific level in xsl
string xPath = "/root/comment()";
However, I would like to select a comment where the internal xml is "Comment2".
Any ideas?
thanks
Dave
source share