PowerShell:检索特定的内部 XML 元素
我有一个具有以下结构的 XML 文档:
<Fruits>
<Fruit>
<Code>1</Code>
<Name>Apple</Name>
</Fruit>
</Fruits>
What is the best way to get a
element by its code (or any other field) in PowerShell 1 code? (不是 XPath,因为它仅在 PowerShell 2 中受支持)
谢谢!
I have an XML document with this structure:
<Fruits>
<Fruit>
<Code>1</Code>
<Name>Apple</Name>
</Fruit>
</Fruits>
What is the best way to get a <Fruit>
element by its code (or any other field) in PowerShell 1 code?
(Not XPath, as it is supported in PowerShell 2 only)
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以像 Posh V1 中的对象一样访问节点
You can access the nodes like objects from Posh V1
如果您愿意,您可以像这样在 V1 中使用 XPath:
You can use XPath in V1 like this, if you prefer: