【问题标题】:Get data from elements within multiple XML files for output to another, single XML file using Powershell使用 Powershell 从多个 XML 文件中的元素获取数据以输出到另一个单个 XML 文件
【发布时间】:2018-09-26 15:04:00
【问题描述】:

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

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

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

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

使用以下代码,我可以从子目录“\Invoices”中仅第一个 XML 的元素“InvoiceID”和“Timestamp”中获取数据.但是,该代码确实为每个 Invoice 文件创建了一个条目;它只是用取自第一个文件的值填充每个元素。 (例如,如果我在“\Invoices”目录中有三个 Invoice XML 文件,我会得到以下结果:&lt;Invoice&gt; 复杂元素的三个实例,每个实例都填充有 InvoiceIDTimestamp first 文件。所以它计算文件并输出相应数量的元素,它只是从第一个文件中获取数据。)

代码如下:

$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
}}

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

我知道我一定是循环不正确,但是在阅读了这个直到我的大脑受伤之后,我终于求助于这个问题。我错过/搞砸了什么明显的事情?

【问题讨论】:

    标签: xml powershell loops string-interpolation


    【解决方案1】:

    "..."@"&lt;newline&gt;...&lt;newline&gt;"@ 字符串中的String interpolation (expansion)立即发生,并且引用变量包含的值当时习惯了。
    因此,same 字符串(其值在循环之前 确定)会在 foreach 循环的每次迭代中输出。

    您的用例需要一种模板化方法,其中字符串插值是延迟按需使用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] 通过Expand-String 以更容易发现的方式呈现$ExecutionContext.InvokeCommand.ExpandString() 的功能方法 cmdletthis GitHub feature request 的主题.

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多