gpt4 book ai didi

xml - 使用 Powershell 从多个 XML 文件中的元素获取数据以输出到另一个单个 XML 文件

转载 作者:数据小太阳 更新时间:2023-10-29 02:09:49 26 4
gpt4 key购买 nike

首先我要承认我是一个 Powershell(和编码)菜鸟。我已经通过一些脚本跌跌撞撞,但我没有对任何接近能力的东西提出任何要求。我希望一些更有经验的人可以让我走上正轨。

我正在尝试从多个 XML 文件中提取特定的元素数据,这些文件将用于填充另一个 XML 文件。我从中提取数据的文件是发票,我想获取发票编号和时间戳并将这些值放入 list 中。 list 结构如下

<?xml version="1.0" encoding="utf-8"?>
<Manifest>
<Invoice>
<InvoiceID></InvoiceID>
<Timestamp></Timestamp>
</Invoice>
</Manifest>

我从中提取的 XML 位于将保存 list 的目录的子目录中。为了简单起见,发票中的元素名称与 list 中的相应元素相同。 list 的文件夹结构是“C:\Projects\Powershell\Manifest\Manifest.xml”,发票的文件夹结构是“C:\Projects\Powershell\Manifest\Invoices\*.xml”。

使用以下代码,我可以从子目录“InvoiceID”中仅第一个 XML 的元素“Timestamp”和“\Invoices”获取数据.但是,该代码确实为每个发票文件创建了一个条目;它只是用从第一个文件中获取的值填充每个元素。 (因此,例如,如果我在“\Invoices”目录中有三个 Invoice XML 文件,我得到的结果是:<Invoice> 复杂元素的三个实例,每个实例都填充了 InvoiceIDTimestamp 第一个 文件。所以它正在对文件进行计数并输出相应数量的元素,它只是从第一个文件以外的任何文件中获取数据。)

代码如下:

$files = Get-ChildItem "C:\Projects\Powershell\Manifest\Invoices\*.xml"

$xmlData = @"
<Invoice>
<InvoiceId>$InvID</InvoiceId>
<Timestamp>$Timestamp</Timestamp>
</Invoice>
"@
$Manifest = "C:\Projects\Powershell\Manifest\Manifest.xml"

ForEach ($file in $files) {
$xmldoc = [xml](Get-Content $file)
$InvID = $xmldoc.Manifest.Invoice.InvoiceID
$Timestamp = $xmldoc.Manifest.Invoice.Timestamp
ForEach ($xml in $xmldoc)
{
Add-Content $Manifest $xmlData
}}

一旦我弄清楚了这一部分,我就可以处理正确格式化输出文件的结束标记。

我知道我一定是循环不正确,但是在阅读了这篇文章直到我的大脑受伤之后,我终于求助于问这个问题。我遗漏/弄乱了什么明显的事情吗?

最佳答案

String interpolation (expansion)"..."@"<newline>...<newline>"@字符串立即发生,引用变量包含的值当时被使用。
结果,相同 字符串——其值在循环之前确定——在你的 foreach 的每次迭代中输出。循环。

您的用例需要模板方法,其中字符串插值延迟按需调用 em>then-current 变量值,使用 $ExecutionContext.InvokeCommand.ExpandString() [1]:

# Define the *template* string as a *literal* - with *single* quotes.
$xmlData = @'
<Invoice>
<InvoiceId>$InvID</InvoiceId>
<Timestamp>$Timestamp</Timestamp>
</Invoice>
'@

# ...
# ForEach ($file in $files) { ...
# Perform interpolation *on demand* with $ExecutionContext.InvokeCommand.ExpandString()
Add-Content $Manifest -Value $ExecutionContext.InvokeCommand.ExpandString($xmlData)
# }

注意:

  • 变量引用也可以通过在 {...} 中的附件显式描述变量名称来嵌入,例如 ${InvID} ,在某些情况下可能需要来消除歧义。

  • 为了嵌入表达式/命令输出,使用$() , subexpression operator ,如下所示。

  • 为了嵌入逐字 $实例,将它们转义为 `$ .


一个简单的例子:

# Define a template string, *single-quoted*, with *literal contents*:
# - '$InvID' is simply literally part of the string, not a variable reference (yet).
# - Ditto for $((Get-Date).TimeOfDay)
$strTempl = 'Invoice ID $InvID extracted at $((Get-Date).TimeOfDay).'

# Echo the template string as-is - unexpanded - ...
$strTempl

# ... and expand it on demand
$InvID = 1
$ExecutionContext.InvokeCommand.ExpandString($strTempl)

# ... and again, after assigning a different value to $InvID
$InvID = 2
$ExecutionContext.InvokeCommand.ExpandString($strTempl)

上面的结果是这样的:

Invoice ID $InvID extracted at $((Get-Date).TimeOfDay).  # template literal
Invoice ID 1 extracted at 11:38:12.2719300. # first on-demand expansion
Invoice ID 2 extracted at 11:38:12.2766010. # second on-demand expnsion

[1] 展示 $ExecutionContext.InvokeCommand.ExpandString() 的功能方法 通过 Expand-String 以更容易发现的方式cmdletthis GitHub feature request 的主题.

关于xml - 使用 Powershell 从多个 XML 文件中的元素获取数据以输出到另一个单个 XML 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49864673/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com