在 xml 中查找文本节点可用性
大家好 我正在使用xslt1.0,我想查找节点是否存在于xml文件中。它可能是父节点、子节点或任何地方。是否有任何xpath或函数可以找到它.. 请帮助我..提前致谢
Hi all
I am using xslt1.0, i want to find whether the node present inside a xml file or not.It may be as parent, child or anywhere.Is there any xpath or function to find it..
Please help me..Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您想检查文档中的任何位置是否存在特定节点。您可以只使用
//nodename
它将返回文档中任何位置名为“nodename”的所有节点的节点集。希望有帮助。
If you want to check if a specific node is present ANYWHERE in the document. You can just use
//nodename
which will return a nodeset of all Nodes named "nodename" anywhere in the document.hope that helps.