使用 PowerShell 解析 XML 文件

发布于 2024-11-30 02:11:44 字数 537 浏览 0 评论 0原文

让我们了解一下我在这里使用的 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 技术交流群。

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

发布评论

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

评论(2

感受沵的脚步 2024-12-07 02:11:44

因此,有几种方法可以获取数据。这是 XPath 方式:

[xml]$x = Get-Content C:\Path\To\File.xml
$x.SelectNodes('//text/English') | Export-CSV C:\Path\To\Result.csv -NoTypeInfo

So there are a couple of ways to get to the data. Here is the XPath way:

[xml]$x = Get-Content C:\Path\To\File.xml
$x.SelectNodes('//text/English') | Export-CSV C:\Path\To\Result.csv -NoTypeInfo
若能看破又如何 2024-12-07 02:11:44

一种方法是:

[xml] $xml = gc file.xml
$xml.content.text | select English | Export-CSV test.csv -notype

One way would be:

[xml] $xml = gc file.xml
$xml.content.text | select English | Export-CSV test.csv -notype
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文