按属性搜索 XmlNode

发布于 2024-12-07 02:59:16 字数 251 浏览 1 评论 0原文

我有 XmlDocument。我不知道XPath,我只知道这个xml文档有一个名为“h3”的节点,属性id =“PortalName”,并且这个属性对于所有xml文档都是唯一的。如何找到这个节点呢?我尝试:

        XmlNode xnList = doc.SelectSingleNode("h3[@id='PortalName']");

但它不起作用,因为它只在根节点中搜索。如何在整个文档中进行搜索? 谢谢

I have XmlDocument. I don't know XPath, I only know that this xml document has node named "h3" with attribute id="PortalName" and this attribute is unique for all xml document. How to find this node? I try:

        XmlNode xnList = doc.SelectSingleNode("h3[@id='PortalName']");

but it does not work because it search only in root node. How to search in whole document?
Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

紫罗兰の梦幻 2024-12-14 02:59:16

幸运的是,这非常简单:

XmlNode xnList = doc.SelectSingleNode("//h3[@id='PortalName']");

“//h3”表示“整个文档中的任何 h3 元素”。 (有关详细信息,请参阅 XPath 规范中的缩写语法。)

Fortunately that's pretty easy:

XmlNode xnList = doc.SelectSingleNode("//h3[@id='PortalName']");

The "//h3" means "any h3 element in the whole document". (See the abbreviated syntax in the XPath spec for more information.)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文