使用 PowerShell 解析 XML 文件
让我们了解一下我在这里使用的 XML 代码是什么样子的。
<content>
<text id="new-users">
<Chinese>Nuevos usuarios</Chinese>
<English>New Users</English>
</text>
<text id="create-an-account">
<Chinese>Crear una Cuenta</Chinese>
<English>Create an Account</English>
</text>
我想提取 << 之间的所有英文文本英语>测试< /英语> 并将其列出,然后在末尾添加逗号。 将其导出到 Excel。
我不明白 powershell 在做什么,我有点迷失了。我可以多次打印出“文本”,并且我尝试打印出 get-contents,然后通过某种方式管道传输内容以仅打印英文,但它不起作用。
To give an idea of how the XML code looks like that I am working with here.
<content>
<text id="new-users">
<Chinese>Nuevos usuarios</Chinese>
<English>New Users</English>
</text>
<text id="create-an-account">
<Chinese>Crear una Cuenta</Chinese>
<English>Create an Account</English>
</text>
I want to pull All of the English text between the < English > the test< /English >
and have it listed then add a comma to the end.
to export it to excel.
I can't understand what powershell is doing I am kind of lost. I can get "text" to print out a lot of times and I looked in to printing out the get-contents then piping the contents with a sort to only print the English and it didn't work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
因此,有几种方法可以获取数据。这是 XPath 方式:
So there are a couple of ways to get to the data. Here is the XPath way:
一种方法是:
One way would be: